1 | <?php |
||
22 | abstract class AddDataSubscriber implements EventSubscriberInterface |
||
23 | { |
||
24 | /** |
||
25 | * {@inheritDoc} |
||
26 | */ |
||
27 | public static function getSubscribedEvents() |
||
36 | |||
37 | public function onPreDeserialize(PreDeserializeEvent $event) |
||
51 | |||
52 | abstract protected function supportsClass($class); |
||
53 | |||
54 | abstract protected function isDataModificationNeeded($data); |
||
55 | |||
56 | abstract protected function getAdditionalData(); |
||
57 | } |
||
58 |