| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 34 | private function thenContainsSymfonyInteropContainer() |
||
| 35 | { |
||
| 36 | $interopContainer = $this->container->get('interop_container'); |
||
| 37 | self::assertInstanceOf(SymfonyInteropContainer::class, $interopContainer); |
||
| 38 | $interopContainer = $this->container->get(SymfonyInteropContainer::class); |
||
| 39 | self::assertInstanceOf(SymfonyInteropContainer::class, $interopContainer); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |