| 1 | <?php |
||
| 11 | class Roster |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var ArrayCollection<RosterItem> |
||
| 15 | */ |
||
| 16 | protected $rosterItems; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var Location |
||
| 20 | */ |
||
| 21 | protected $location; |
||
| 22 | |||
| 23 | |||
| 24 | 13 | public function __construct() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return ArrayCollection |
||
| 31 | */ |
||
| 32 | 10 | public function getRosterItems() |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @param ArrayCollection $rosterItems |
||
| 39 | * @return Roster |
||
| 40 | */ |
||
| 41 | 10 | public function setRosterItems($rosterItems) |
|
| 46 | |||
| 47 | /** |
||
| 48 | * @return Location |
||
| 49 | */ |
||
| 50 | 4 | public function getLocation() |
|
| 54 | |||
| 55 | /** |
||
| 56 | * @param Location $location |
||
| 57 | * @return Roster |
||
| 58 | */ |
||
| 59 | 10 | public function setLocation($location) |
|
| 64 | } |
||
| 65 |