Skip to content

Instantly share code, notes, and snippets.

@taueres
Created June 21, 2017 20:19
Show Gist options
  • Save taueres/05ff035bb2f72cddd7711b7f93cd9d6a to your computer and use it in GitHub Desktop.
Save taueres/05ff035bb2f72cddd7711b7f93cd9d6a to your computer and use it in GitHub Desktop.
<?php
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Tests\OrmFunctionalTestCase;
class Ticket4646InstanceOfParametric extends OrmFunctionalTestCase
{
protected function setUp()
{
parent::setUp();
$this->_schemaTool->createSchema([
$this->_em->getClassMetadata(PersonTicket4646Parametric::class),
$this->_em->getClassMetadata(EmployeeTicket4646Parametric::class),
]);
}
public function testInstanceOf()
{
$this->_em->persist(new PersonTicket4646Parametric());
$this->_em->persist(new EmployeeTicket4646Parametric());
$this->_em->flush();
$dql = 'SELECT p FROM Doctrine\Tests\ORM\Functional\Ticket\PersonTicket4646Parametric p
WHERE p INSTANCE OF :parameter';
$query = $this->_em->createQuery($dql);
$query->setParameter(
'parameter',
$this->_em->getClassMetadata(PersonTicket4646Parametric::class)
);
$result = $query->getResult();
$this->assertCount(2, $result);
$this->assertContainsOnlyInstancesOf(PersonTicket4646Parametric::class, $result);
}
}
/**
* @Entity()
* @Table(name="instance_of_parametric_person")
* @InheritanceType(value="JOINED")
* @DiscriminatorColumn(name="kind", type="string")
* @DiscriminatorMap(value={
* "person": "Doctrine\Tests\ORM\Functional\Ticket\PersonTicket4646Parametric",
* "employee": "Doctrine\Tests\ORM\Functional\Ticket\EmployeeTicket4646Parametric"
* })
*/
class PersonTicket4646Parametric
{
/**
* @Id()
* @GeneratedValue()
* @Column(type="integer")
*/
private $id;
public function getId()
{
return $this->id;
}
}
/**
* @Entity()
* @Table(name="instance_of_parametric_employee")
*/
class EmployeeTicket4646Parametric extends PersonTicket4646Parametric
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment