| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class BucketLoggingConsentHandler implements EventSubscriberInterface { |
||
| 18 | |||
| 19 | private BucketLoggingHandler $bucketLoggingHandler; |
||
| 20 | |||
| 21 | public static function getSubscribedEvents() { |
||
| 22 | return [ |
||
| 23 | KernelEvents::REQUEST => 'onKernelRequest' |
||
| 24 | ]; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function __construct( BucketLoggingHandler $bucketLoggingHandler ) { |
||
| 28 | $this->bucketLoggingHandler = $bucketLoggingHandler; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function onKernelRequest( GetResponseEvent $event ): void { |
||
| 34 | ); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |