Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class InducementCollection extends ArrayCollection |
||
9 | { |
||
10 | protected $roster = null; |
||
11 | protected $limitvalue = null; |
||
12 | |||
13 | /** |
||
14 | * @return RosterInterface |
||
15 | */ |
||
16 | public function getRoster(): ?RosterInterface |
||
17 | { |
||
18 | return $this->roster; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @param RosterInterface|null $roster |
||
23 | * @return $this |
||
24 | */ |
||
25 | public function setRoster(?RosterInterface $roster): self |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return int |
||
33 | */ |
||
34 | public function getLimitValue(): ?int |
||
35 | { |
||
36 | return $this->limitValue; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param int $limitValue |
||
41 | */ |
||
42 | public function setLimitValue(int $limitValue): self |
||
46 | } |
||
47 | } |
||
48 |