| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | abstract class AbstractSubscriber implements ServiceSubscriberInterface, EventSubscriberInterface |
||
| 10 | { |
||
| 11 | protected $container; |
||
| 12 | |||
| 13 | public function __construct(ContainerInterface $container) |
||
| 16 | } |
||
| 17 | |||
| 18 | abstract public static function getSubscribedEvents(): array; |
||
| 19 | |||
| 20 | abstract public static function getSubscribedServices(): array; |
||
| 21 | } |
||
| 22 |