Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
27 | protected function execute(InputInterface $input, OutputInterface $output) |
||
28 | { |
||
29 | $deploy = $this->getConveyor($input, $output, $this->getHelperSet()); |
||
30 | |||
31 | $result = $deploy->validate(); |
||
32 | |||
33 | if (true === $result) { |
||
34 | $output->writeln(sprintf('%s is valid', $deploy->getConfig()->getFile())); |
||
35 | } |
||
36 | } |
||
37 | } |
||
38 |