| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function __construct(DropboxApi $client, FileMetadata $dropboxFile) |
||
| 22 | { |
||
| 23 | $this->client = $client; |
||
| 24 | $this->filename = $dropboxFile->getName(); |
||
| 25 | $this->pathname = $dropboxFile->getPathDisplay(); |
||
| 26 | $this->size = $dropboxFile->getSize(); |
||
| 27 | $this->lastModified = strtotime($dropboxFile->getClientModified()); |
||
| 28 | } |
||
| 29 | |||
| 43 | } |