Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
34 | { |
||
35 | 1 | $object = $input->getArgument('object'); |
|
36 | 1 | $resolvedTo = get_class(Injector::inst()->get($object)); |
|
37 | |||
38 | 1 | $output->writeln('<comment>' . $object . '</comment> resolves to <info>' . $resolvedTo . '</info>'); |
|
39 | 1 | } |
|
40 | } |
||
41 |