1
0
mirror of synced 2025-02-03 22:09:26 +03:00
doctrine2/tests/Doctrine/Tests/Models/DDC6303/DDC6303ContractB.php

17 lines
274 B
PHP
Raw Normal View History

2017-03-04 15:09:29 +01:00
<?php
namespace Doctrine\Tests\Models\DDC6303;
/**
* @Entity
* @Table(name="ddc6303_contracts_b")
*/
class DDC6303ContractB extends DDC6303Contract
{
/**
* @Column(type="simple_array", nullable=true)
*
* @var array
*/
public $originalData;
}