1
0
mirror of synced 2025-02-03 22:09:26 +03:00

17 lines
271 B
PHP
Raw Normal View History

2015-09-14 18:35:49 +02:00
<?php
namespace Doctrine\Tests\Models\DDC3899;
/**
* @Entity
* @Table(name="dc3899_users")
*/
class DDC3899User
{
/** @Id @Column(type="integer") */
public $id;
/** @OneToMany(targetEntity="DDC3899Contract", mappedBy="user") */
public $contracts;
}