| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 13 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 13 | public function testMakeInternalClassWithOptionalMiddleArgumentSkipped(): void  | 
            ||
| 14 |     { | 
            ||
| 15 | $container = $this->getContainer();  | 
            ||
| 16 | |||
| 17 | $this->expectException(MissingInternalArgumentException::class);  | 
            ||
| 18 |         $this->expectExceptionMessageMatches('/PHP internal/'); | 
            ||
| 19 | |||
| 20 | (new Injector($container))->make(\SplFileObject::class, [  | 
            ||
| 21 | 'file_name' => __FILE__,  | 
            ||
| 22 | // second parameter skipped  | 
            ||
| 23 | // third parameter skipped  | 
            ||
| 24 | 'context' => null,  | 
            ||
| 25 | 'other-parameter' => true,  | 
            ||
| 26 | ]);  | 
            ||
| 29 |