From e55bef9a94f1b41c5dadd0c72e5e58855c097677 Mon Sep 17 00:00:00 2001 From: Bogdan Olteanu Date: Sat, 25 Mar 2017 14:15:12 +0200 Subject: [PATCH 1/2] Changed some of the commands Some of the commands were app/console instead of bin\console --- tutorial/getting-started.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial/getting-started.rst b/tutorial/getting-started.rst index 6f9b9fc5..f3e98696 100644 --- a/tutorial/getting-started.rst +++ b/tutorial/getting-started.rst @@ -294,7 +294,7 @@ them manually using the following command: .. code-block:: bash - $ php app/console doctrine:phpcr:repository:init + $ php bin\console doctrine:phpcr:repository:init .. note:: @@ -308,7 +308,7 @@ content repository: .. code-block:: bash - $ php app/console doctrine:phpcr:node:dump + $ php bin\console doctrine:phpcr:node:dump Create Data Fixtures ~~~~~~~~~~~~~~~~~~~~ @@ -404,7 +404,7 @@ Then load the fixtures: .. code-block:: bash - $ php app/console doctrine:phpcr:fixtures:load + $ php bin\console doctrine:phpcr:fixtures:load You should now have some data in your content repository. From 61ae798bf93a81802858dd9e7969144b0891059b Mon Sep 17 00:00:00 2001 From: Bogdan Olteanu Date: Fri, 31 Mar 2017 15:28:15 +0300 Subject: [PATCH 2/2] Update getting-started.rst --- tutorial/getting-started.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorial/getting-started.rst b/tutorial/getting-started.rst index f3e98696..4836c742 100644 --- a/tutorial/getting-started.rst +++ b/tutorial/getting-started.rst @@ -54,7 +54,7 @@ node content of the PHPCR content repository: .. code-block:: bash - $ php app/console doctrine:phpcr:init:dbal + $ php bin/console doctrine:phpcr:init:dbal .. note:: @@ -69,7 +69,7 @@ Now you can generate the bundle in which you will write most of your code: .. code-block:: bash - $ php app/console generate:bundle --namespace=AppBundle --dir=src --format=yml --no-interaction + $ php bin/console generate:bundle --namespace=AppBundle --dir=src --format=yml --no-interaction The Documents ............. @@ -294,7 +294,7 @@ them manually using the following command: .. code-block:: bash - $ php bin\console doctrine:phpcr:repository:init + $ php bin/console doctrine:phpcr:repository:init .. note:: @@ -404,7 +404,7 @@ Then load the fixtures: .. code-block:: bash - $ php bin\console doctrine:phpcr:fixtures:load + $ php bin/console doctrine:phpcr:fixtures:load You should now have some data in your content repository.