1 | <?php |
||
12 | class DataCollectorPlugin implements EventSubscriberInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var SoapCallRegistry |
||
16 | */ |
||
17 | private $registry; |
||
18 | |||
19 | /** |
||
20 | * @param SoapCallRegistry $registry |
||
21 | */ |
||
22 | 12 | public function __construct(SoapCallRegistry $registry) |
|
26 | |||
27 | /** |
||
28 | * @param RequestEvent $event |
||
29 | */ |
||
30 | 6 | public function onClientRequest(RequestEvent $event) |
|
34 | |||
35 | /** |
||
36 | * @param ResponseEvent $event |
||
37 | */ |
||
38 | 6 | public function onClientResponse(ResponseEvent $event) |
|
42 | |||
43 | /** |
||
44 | * @param FaultEvent $event |
||
45 | */ |
||
46 | 6 | public function onClientFault(FaultEvent $event) |
|
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | 3 | public static function getSubscribedEvents() |
|
73 | } |
||
74 |