| Total Complexity | 7 | 
| Total Lines | 46 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 11 | class OptimizeImagesCommand extends AbstractCommand | ||
| 12 | { | ||
| 13 | private $mimeTypes = [ | ||
| 14 | 'image/jpeg', | ||
| 15 | 'image/png' | ||
| 16 | ]; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * | ||
| 20 | */ | ||
| 21 | protected function configure() | ||
| 26 | } | ||
| 27 | |||
| 28 | /** | ||
| 29 | * @param InputInterface $input | ||
| 30 | * @param OutputInterface $output | ||
| 31 | */ | ||
| 32 | protected function execute(InputInterface $input, OutputInterface $output) | ||
| 63 |