1
0
mirror of synced 2025-02-09 16:59:26 +03:00
2017-08-11 13:46:21 +03:00

43 lines
620 B
PHP

<?php
/**
*
* User: Uladzimir Struts <Sysaninster@gmail.com>
* Date: 11.08.2017
* Time: 13:12
*/
namespace Doctrine\Tests\Models\DDC6613;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @Entity()
* @Table(name="ddc6613_user")
*/
class User
{
/**
* @Id
* @GeneratedValue
* @Column(type="integer")
*/
public $id;
/**
* @ManyToMany(targetEntity="Phone", fetch="LAZY", cascade={"remove", "detach"})
*/
public $phones;
/**
* User constructor.
*/
public function __construct()
{
$this->phones = new ArrayCollection();
}
}