| Total Complexity | 3 |
| Total Lines | 50 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class ScheduleBuilderKernelPassTest extends AbstractCompilerPassTestCase |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @test |
||
| 19 | */ |
||
| 20 | public function adds_tag_if_kernel_implement_interface() |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @test |
||
| 37 | */ |
||
| 38 | public function does_not_add_tag_if_kernel_does_not_implement_interface() |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @test |
||
| 52 | */ |
||
| 53 | public function does_not_add_tag_if_kernel_class_is_null() |
||
| 60 | } |
||
| 61 | |||
| 62 | protected function registerCompilerPass(ContainerBuilder $container): void |
||
| 65 | } |
||
| 66 | } |
||
| 67 |