Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 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 | } |
|
44 | |||
60 |