| 1 | <?php |
||
| 13 | class BrowserDataAppending implements EventSubscriberInterface |
||
| 14 | { |
||
| 15 | /** @var UserAgent */ |
||
| 16 | private $userAgent; |
||
| 17 | /** |
||
| 18 | * @var ParserInterface |
||
| 19 | */ |
||
| 20 | private $parser; |
||
| 21 | |||
| 22 | 1 | public function __construct(ParserInterface $parser) |
|
| 26 | |||
| 27 | 1 | public static function getSubscribedEvents(): array |
|
| 33 | |||
| 34 | public function __invoke(array $record): array |
||
| 46 | |||
| 47 | public function onKernelRequest(RequestEvent $event): void |
||
| 54 | } |
||
| 55 |