Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 7 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
38 | public function onKernelRequest(GetResponseEvent $event) |
||
39 | { |
||
40 | if (!$event->isMasterRequest()) { |
||
41 | return; |
||
42 | } |
||
43 | $request = $event->getRequest(); |
||
44 | if (!$request->attributes->get(RequestMeta::ATTRIBUTE_URI)) { |
||
45 | return; |
||
46 | } |
||
47 | $this->processor->process($request); |
||
48 | } |
||
49 | } |
||
50 |