1 | <?php |
||
11 | class Role |
||
12 | { |
||
13 | /** |
||
14 | * @Id |
||
15 | * @Column(type="integer") |
||
16 | * @GeneratedValue |
||
17 | */ |
||
18 | protected $id; |
||
19 | |||
20 | /** |
||
21 | * @Column(type="string", length=32) |
||
22 | */ |
||
23 | protected $name; |
||
24 | |||
25 | /** |
||
26 | * @ManyToMany(targetEntity="User", mappedBy="roles") |
||
27 | */ |
||
28 | protected $users; |
||
29 | |||
30 | public function __construct() |
||
34 | |||
35 | public function getName() |
||
39 | } |
||
40 |