| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class StaticCommand extends Command |
||
| 11 | { |
||
| 12 | private $static; |
||
| 13 | |||
| 14 | public function __construct(StaticService $static) |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function configure() |
||
| 21 | { |
||
| 22 | $this |
||
| 23 | ->setName('static:generate') |
||
| 24 | ->setDescription('Generate static version for your website') |
||
| 25 | ; |
||
| 26 | } |
||
| 27 | |||
| 28 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 32 | } |
||
| 33 | } |
||
| 34 |