Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Last active October 31, 2019 22:57
Show Gist options
  • Save ismail1432/8d4a83f0bedb133e7908068ce05e5959 to your computer and use it in GitHub Desktop.
Save ismail1432/8d4a83f0bedb133e7908068ce05e5959 to your computer and use it in GitHub Desktop.
<?php
class FooRequestListener
{
public function onKernelRequest(RequestEvent $event)
{
if ($this->supports($event) {
// condition fullfilled do some stuff
}
}
public function supports(RequestEvent $event): bool
{
return $event->isMasterRequest();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment