Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function handle(GetPresignedUrlCommand $command): string |
||
21 | { |
||
22 | $awsCommand = $this->s3Client->getCommand('GetObject', $command->getArgs()); |
||
23 | $request = $this->s3Client->createPresignedRequest($awsCommand, $command->getExpiration()); |
||
24 | |||
25 | return (string)$request->getUri(); |
||
26 | } |
||
28 |