| 1 | <?php |
||
| 17 | class UserGroup |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var int |
||
| 21 | * @ORM\Id() |
||
| 22 | * @ORM\GeneratedValue(strategy="AUTO") |
||
| 23 | * @ORM\Column(type="integer") |
||
| 24 | */ |
||
| 25 | protected $id; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var \Doctrine\Common\Collections\Collection|User[] |
||
| 29 | * @ORM\ManyToMany(targetEntity="User", inversedBy="groups") |
||
| 30 | */ |
||
| 31 | protected $users; |
||
| 32 | |||
| 33 | /* */ |
||
| 34 | public function __construct() |
||
| 38 | } |
||
| 39 |