Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | public function execute(InputInterface $input, OutputInterface $output) |
||
42 | { |
||
43 | $this->debug->setStatus($input->getOption('behapi-debug')); |
||
44 | |||
45 | if (true === $this->debug->getStatus()) { |
||
46 | // disable all formatters, enable only the pretty one |
||
47 | $this->manager->disableAllFormatters(); |
||
48 | $this->manager->enableFormatter($this->formatter); |
||
49 | } |
||
50 | } |
||
51 | } |
||
52 |