Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class Depository |
||
17 | { |
||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $depository = []; |
||
22 | |||
23 | /** |
||
24 | * @return array |
||
25 | */ |
||
26 | public function getDepository(): array |
||
27 | { |
||
28 | return $this->depository; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param Item $item |
||
33 | */ |
||
34 | public function setItem(Item $item) |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param int $value |
||
41 | * @return Item |
||
42 | */ |
||
43 | public function getItem(int $value): Item |
||
46 | } |
||
47 | } |
||
48 |