From 3405659ebac55e57957a084d62e6efc07c5d70fe Mon Sep 17 00:00:00 2001 From: Mark Fox Date: Sat, 17 Aug 2013 14:07:29 -0700 Subject: [PATCH] Update getting-started.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The inline cli-config.php, bootstrap.php examples were out of sync with Doctrine 2.4.x — I referenced https://github.com/doctrine/doctrine2-orm-tutorial/ for correct examples --- docs/en/tutorials/getting-started.rst | 47 ++++++++++++++++++--------- 1 file changed, 31 insertions(+), 16 deletions(-) diff --git a/docs/en/tutorials/getting-started.rst b/docs/en/tutorials/getting-started.rst index 4f169cd94..5342ff12e 100644 --- a/docs/en/tutorials/getting-started.rst +++ b/docs/en/tutorials/getting-started.rst @@ -25,7 +25,7 @@ The code of this tutorial is `available on Github 'pdo_sqlite', 'path' => __DIR__ . '/db.sqlite', ); - + // obtaining the entity manager - $entityManager = EntityManager::create($conn, $config); + $entityManager = \Doctrine\ORM\EntityManager::create($conn, $config); The first require statement sets up the autoloading capabilities of Doctrine using the Composer autoload. @@ -186,8 +199,10 @@ doctrine command. Its a fairly simple file: new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($entityManager) + )); You can then change into your project directory and call the Doctrine command-line tool: