1 | <?php |
||
11 | final class JmsValidatorSubscriber implements EventSubscriberInterface |
||
12 | { |
||
13 | private $validator; |
||
14 | |||
15 | public function __construct(ValidatorInterface $validator) |
||
19 | |||
20 | 12 | public static function getSubscribedEvents() |
|
21 | { |
||
22 | return [ |
||
23 | 12 | ['event' => 'serializer.post_deserialize', 'method' => 'onPostDeserialize'], |
|
24 | 12 | ]; |
|
25 | } |
||
26 | |||
27 | public function onPostDeserialize(ObjectEvent $event) |
||
51 | } |
||
52 |