| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class LazyHandlerTest extends TestCase |
||
| 12 | { |
||
| 13 | /** @var ContainerInterface */ |
||
| 14 | private $container; |
||
| 15 | |||
| 16 | public function setUp() |
||
| 17 | { |
||
| 18 | $this->container = new class implements ContainerInterface |
||
| 19 | { |
||
| 20 | public function has($id) |
||
| 23 | } |
||
| 24 | |||
| 25 | public function get($id) |
||
| 28 | } |
||
| 29 | }; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testDefersToHandlerImplemention(): void |
||
| 41 | } |
||
| 42 | } |
||
| 43 |