1
0
mirror of synced 2025-02-03 22:09:26 +03:00
doctrine2/tests/Doctrine/Tests/Models/DDC6303/DDC6303Contract.php
2017-08-19 15:56:59 +02:00

25 lines
468 B
PHP

<?php
namespace Doctrine\Tests\Models\DDC6303;
/**
* @Entity
* @Table(name="ddc6303_contract")
* @InheritanceType("JOINED")
* @DiscriminatorColumn(name="discr", type="string")
* @DiscriminatorMap({
* "contract" = "DDC6303Contract",
* "contract_b" = "DDC6303ContractB",
* "contract_a" = "DDC6303ContractA"
* })
*/
class DDC6303Contract
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue
*/
public $id;
}