Version 2.0.5 no longer needs $cli call and the namespace for Components has changed.
This commit is contained in:
parent
7adbf5698a
commit
457abbacef
1 changed files with 1 additions and 2 deletions
|
@ -734,10 +734,9 @@ doctrine command. Its a fairly simple file:
|
||||||
.. code-block:: php
|
.. code-block:: php
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$helperSet = new \Symfony\Components\Console\Helper\HelperSet(array(
|
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
|
||||||
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($entityManager)
|
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($entityManager)
|
||||||
));
|
));
|
||||||
$cli->setHelperSet($helperSet);
|
|
||||||
|
|
||||||
You can then change into your project directory and call the
|
You can then change into your project directory and call the
|
||||||
Doctrine command-line tool:
|
Doctrine command-line tool:
|
||||||
|
|
Loading…
Add table
Reference in a new issue