From c86b708587c5d71c2fe32ae1751131579c22a621 Mon Sep 17 00:00:00 2001 From: Alex Wybraniec Date: Mon, 3 Aug 2015 16:14:07 +0100 Subject: [PATCH] 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 setting. --- book/doctrine.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/doctrine.rst b/book/doctrine.rst index afe320c1899..36c2aa01c26 100644 --- a/book/doctrine.rst +++ b/book/doctrine.rst @@ -904,7 +904,7 @@ you can let Doctrine create the class for you. .. code-block:: bash - $ php app/console doctrine:generate:entity \ + $ php app/console doctrine:generate:entity --no-interaction \ --entity="AppBundle:Category" \ --fields="name:string(255)"