Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | abstract class AbstractModifier implements DataModifierInterface, 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 |
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.