| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 3 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 34 | { |
||
| 35 | 3 | $header = $this->renderer->render('Views/Layout/Header.twig'); |
|
| 36 | 3 | $footer = $this->renderer->render('Views/Layout/Footer.twig'); |
|
| 37 | |||
| 38 | 3 | $this->filesystem->write('application/views/layout/header.php', $header); |
|
| 39 | 3 | $this->filesystem->write('application/views/layout/footer.php', $footer); |
|
| 40 | |||
| 41 | 3 | $output->writeln('<info>Layout created successfully!</info>'); |
|
| 42 | 3 | } |
|
| 43 | } |
||
| 44 |