Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 3 | public function __construct(S3Client $client, string $bucket, array $object) |
|
39 | { |
||
40 | 3 | $this->client = $client; |
|
41 | 3 | $this->bucket = $bucket; |
|
42 | 3 | $this->filename = basename($object['Key']); |
|
43 | 3 | $this->pathname = $object['Key']; |
|
44 | 3 | $this->size = $object['Size']; |
|
45 | 3 | $this->lastModified = strtotime($object['LastModified']); |
|
46 | 3 | } |
|
47 | |||
65 |