Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function fullProvider(): array |
||
32 | { |
||
33 | return [ |
||
34 | [new Basic(new Storage\Storage(new Storage\Key\StaticPrefixKey(), new Storage\Target\Volume())), Check\DataFiles::class], |
||
35 | [new Storage(new Storage\Factory(new Storage\Key\Factory(), new Storage\Target\Factory())), Check\DataStorage::class], |
||
36 | ['test.pas', Check\LocalVolume1::class], |
||
37 | [123456, Check\CustomList::class], |
||
38 | [null, Check\CustomList::class], |
||
39 | [false, Check\CustomList::class], |
||
40 | ]; |
||
43 |