| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function optimizeCommand(Image $image) : string |
||
| 15 | { |
||
| 16 | /** @var array $binaryOptions */ |
||
| 17 | $binaryOptions = $this->getBinaryOptions(); |
||
| 18 | $binaryOptions[] = sprintf('-o %s', $image->getPath()); |
||
| 19 | $this->setBinaryOptions($binaryOptions); |
||
| 20 | |||
| 21 | return parent::optimizeCommand($image); |
||
| 22 | } |
||
| 23 | } |