| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 43 | 1 | protected function execute(InputInterface $input, OutputInterface $output) : int |
|
| 44 | { |
||
| 45 | 1 | $flags = JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE; |
|
| 46 | |||
| 47 | 1 | $output->writeln(json_encode($this->container->get('openapi')->toArray(), $flags)); |
|
| 48 | |||
| 49 | 1 | return 0; |
|
| 50 | } |
||
| 52 |