1
0
Fork 0
mirror of synced 2025-04-04 13:53:36 +03:00

Merge pull request #1430 from michael-lavaveshkul/master

"INSTANCE OF" example doesn't match description.
This commit is contained in:
Bill Schaller 2015-06-18 10:30:14 -04:00
commit 6b3056ff8c

View file

@ -601,5 +601,5 @@ Querying for the staffs without getting any technicians can be achieved by this
.. code-block:: php
<?php
$query = $em->createQuery("SELECT staff FROM MyProject\Model\Staff staff WHERE staff INSTANCE OF MyProject\Model\Staff");
$query = $em->createQuery("SELECT staff FROM MyProject\Model\Staff staff WHERE staff NOT INSTANCE OF MyProject\Model\Technician");
$staffs = $query->getResult();