1 | <?php |
||
10 | final class JmsValidatorSubscriber implements EventSubscriberInterface |
||
11 | { |
||
12 | private $validator; |
||
13 | |||
14 | 2 | public function __construct(ValidatorInterface $validator) |
|
15 | { |
||
16 | 2 | $this->validator = $validator; |
|
17 | 2 | } |
|
18 | |||
19 | 15 | public static function getSubscribedEvents() |
|
25 | |||
26 | 2 | public function onPostDeserialize(ObjectEvent $event) |
|
42 | } |
||
43 |