| 1 | <?php |
||
| 12 | class Group extends BaseGroup |
||
| 13 | { |
||
|
|
|||
| 14 | /** |
||
| 15 | * @ORM\Id |
||
| 16 | * @ORM\Column(type="integer") |
||
| 17 | * @ORM\GeneratedValue(strategy="AUTO") |
||
| 18 | */ |
||
| 19 | protected $id; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User", mappedBy="groups") |
||
| 23 | * |
||
| 24 | */ |
||
| 25 | protected $users; |
||
| 26 | |||
| 27 | public function __construct($name = '', $roles = array()) |
||
| 32 | |||
| 33 | public function __toString() { |
||
| 36 | |||
| 37 | function getUsers() { |
||
| 40 | |||
| 41 | } |
||
| 42 |