diff --git a/en/tutorials/getting-started-xml-edition.rst b/en/tutorials/getting-started-xml-edition.rst index 4377592c5..14069f4ea 100644 --- a/en/tutorials/getting-started-xml-edition.rst +++ b/en/tutorials/getting-started-xml-edition.rst @@ -745,7 +745,7 @@ Doctrine command-line tool: :: doctrine@my-desktop> cd myproject/ - doctrine@my-desktop> doctrine orm:schema-tool:create --force + doctrine@my-desktop> doctrine orm:schema-tool:create .. note:: @@ -766,7 +766,7 @@ either re-create the database: :: doctrine@my-desktop> doctrine orm:schema-tool:drop --force - doctrine@my-desktop> doctrine orm:schema-tool:create --force + doctrine@my-desktop> doctrine orm:schema-tool:create Or use the update functionality: @@ -975,7 +975,7 @@ can rewrite our code: createQuery($dql); + $query = $entityManager->createQuery($dql); $bugs = $query->getArrayResult(); foreach ($bugs AS $bug) { @@ -1116,7 +1116,7 @@ grouped by product: createQuery($dql)->getScalarResult(); + $productBugs = $entityManager->createQuery($dql)->getScalarResult(); foreach($productBugs as $productBug) { echo $productBug['name']." has " . $productBug['openBugs'] . " open bugs!\n"; @@ -1244,7 +1244,8 @@ we have to adjust the metadata slightly.