Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
30 | 3 | public static function of(InputInterface $input, Output $output): void |
|
31 | { |
||
32 | 3 | $application = new Application(); |
|
33 | 3 | $reflector = new ReflectionObject($application); |
|
34 | 3 | $method = $reflector->getMethod('configureIO'); |
|
35 | 3 | $method->setAccessible(true); |
|
36 | 3 | $method->invoke($application, $input, $output); |
|
37 | 3 | } |
|
38 | } |
||
39 |