From 2e00e9d7155feb404f451693c7ec2fa93d7fc02a Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Tue, 14 Dec 2010 23:33:31 +0100 Subject: [PATCH] Fix another mess in Mini Tutorial. --- en/reference/introduction.rst | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/en/reference/introduction.rst b/en/reference/introduction.rst index 9f42e2741..58a4ab77a 100644 --- a/en/reference/introduction.rst +++ b/en/reference/introduction.rst @@ -364,20 +364,18 @@ database. 5) Replace the contents of index.php with the following: -.. raw:: html +.. code-block:: php - - - createQuery('select u from Entities u where u.name = ?1'); - $q->setParameter(1, 'Garfield'); $garfield = - $q->getSingleResult(); + getName() . "!"; + ## PUT YOUR TEST CODE BELOW + + $q = $em->createQuery('select u from Entities u where u.name = ?1'); + $q->setParameter(1, 'Garfield'); $garfield = + $q->getSingleResult(); + + echo "Hello " . $garfield->getName() . "!"; You just created your first DQL query to retrieve the user with the