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