Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | trait TStorage |
||
11 | { |
||
12 | use TLang; |
||
13 | |||
14 | protected ?Storage $storage = null; |
||
15 | |||
16 | 4 | public function setStorage(Storage $lang = null): void |
|
17 | { |
||
18 | 4 | $this->storage = $lang; |
|
19 | } |
||
20 | |||
21 | /** |
||
22 | * @throws MimeException |
||
23 | * @return Storage |
||
24 | */ |
||
25 | 4 | public function getStorage(): Storage |
|
31 | } |
||
32 | } |
||
33 |