Skip to content

Commit 3189caf

Browse files
committed
minor #5594 Missing --no-interaction flag? (alexwybraniec)
This PR was submitted for the 2.7 branch but it was merged into the 2.3 branch instead (closes #5594). Discussion ---------- Missing --no-interaction flag? Running php app/console doctrine:generate:entity --entity="AppBundle:Category" --fields="name:string(255)" does not automatically generate the entity. Needs the --no-interaction flag set or it enters the interactive generator. Commits ------- 478023c Missing --no-interaction flag?
2 parents ac38b0c + 478023c commit 3189caf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/doctrine.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ you can let Doctrine create the class for you.
904904

905905
.. code-block:: bash
906906
907-
$ php app/console doctrine:generate:entity \
907+
$ php app/console doctrine:generate:entity --no-interaction \
908908
--entity="AppBundle:Category" \
909909
--fields="name:string(255)"
910910

0 commit comments

Comments
 (0)