| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | abstract class AbstractMiddleware implements MiddlewareInterface, ServiceSubscriberInterface |
||
| 9 | { |
||
| 10 | protected $container; |
||
| 11 | |||
| 12 | public function __construct(ContainerInterface $container) |
||
| 15 | } |
||
| 16 | |||
| 17 | abstract public function process($object, array $context = array()); |
||
| 18 | |||
| 19 | abstract public function supportsData($data): bool; |
||
| 20 | |||
| 21 | abstract public static function getSubscribedServices(): array; |
||
| 22 | } |
||
| 23 |