We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I run command
php bin/console sulu:community:init
system return:
09:49:52 ERROR [console] Error thrown while running command "sulu:community:init". Message: "Notice: Undefined property: Sulu\Bundle\CommunityBundle\Command\InitCommand::$entityManager" ["exception" => Symfony\Component\Debug\Excepti on\ContextErrorException { …},"command" => "sulu:community:init","message" => "Notice: Undefined property: Sulu\Bundle\CommunityBundle\Command\InitCommand::$entityManager"]
In InitCommand.php line 61:
Notice: Undefined property: Sulu\Bundle\CommunityBundle\Command\InitCommand::$entityManager
in file:
vendor\sulu\community-bundle\Command\InitCommand.php
in line 64:
$this->entityManager->flush();
replace to:
$entityManager->flush();
The text was updated successfully, but these errors were encountered:
Thank you! Fixed in #114 will be released in 1.1.1
Sorry, something went wrong.
No branches or pull requests
Actual Behavior
When I run command
php bin/console sulu:community:init
system return:
09:49:52 ERROR [console] Error thrown while running command "sulu:community:init". Message: "Notice: Undefined property: Sulu\Bundle\CommunityBundle\Command\InitCommand::$entityManager" ["exception" => Symfony\Component\Debug\Excepti
on\ContextErrorException { …},"command" => "sulu:community:init","message" => "Notice: Undefined property: Sulu\Bundle\CommunityBundle\Command\InitCommand::$entityManager"]
In InitCommand.php line 61:
Notice: Undefined property: Sulu\Bundle\CommunityBundle\Command\InitCommand::$entityManager
Possible Solutions
in file:
vendor\sulu\community-bundle\Command\InitCommand.php
in line 64:
$this->entityManager->flush();
replace to:
$entityManager->flush();
The text was updated successfully, but these errors were encountered: