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