| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function handle(UseCaseCommandInterface $command): ResponseInterface |
||
| 25 | { |
||
| 26 | $content = $this->serviceProvider->execute($command); |
||
| 27 | $this->responder |
||
| 28 | ->setSuccess(true) |
||
| 29 | ->setMessage('Prices fetched successfully!!') |
||
| 30 | ->setContent($content); |
||
| 31 | |||
| 32 | return $this->responder; |
||
| 33 | } |
||
| 35 |