Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | class File extends AFile |
||
19 | { |
||
20 | use TStorage; |
||
21 | |||
22 | /** |
||
23 | * @param Storage $storage where to save |
||
24 | * @param IMode $mode hashing mode |
||
25 | * @param ILock $lock file lock |
||
26 | * @param string $path use full path with file name |
||
27 | * @param IKATranslations|null $lang |
||
28 | */ |
||
29 | 11 | public function __construct(Storage $storage, IMode $mode, ILock $lock, string $path, ?IKATranslations $lang = null) |
|
35 |