Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | 4 | public function __construct(Disk $disk, Closed $yandexFile) |
|
37 | { |
||
38 | 4 | $this->disk = $disk; |
|
39 | 4 | $this->filename = $yandexFile->get('name'); |
|
40 | 4 | $this->pathname = $yandexFile->get('path'); |
|
41 | 4 | $this->size = $yandexFile->get('size'); |
|
42 | 4 | $this->lastModified = strtotime($yandexFile->get('modified')); |
|
43 | 4 | } |
|
60 |