| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | 3 | public function __construct(DropboxApi $client, FileMetadata $dropboxFile) |
|
| 33 | { |
||
| 34 | 3 | $this->client = $client; |
|
| 35 | 3 | $this->filename = $dropboxFile->getName(); |
|
| 36 | 3 | $this->pathname = $dropboxFile->getPathDisplay(); |
|
| 37 | 3 | $this->size = $dropboxFile->getSize(); |
|
| 38 | 3 | $this->lastModified = strtotime($dropboxFile->getClientModified()); |
|
| 39 | 3 | } |
|
| 40 | |||
| 55 |