Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Created October 31, 2019 22:58
Show Gist options
  • Select an option

  • Save ismail1432/6fbd88a2961b8dba9258dc4b8bc989e4 to your computer and use it in GitHub Desktop.

Select an option

Save ismail1432/6fbd88a2961b8dba9258dc4b8bc989e4 to your computer and use it in GitHub Desktop.
<?php
class FooRequestListener
{
private $enabled = true;
// ..
public function supports(RequestEvent $event): bool
{
return $event->isMasterRequest() && $this->enabled;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment