Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Last active October 31, 2019 23:16
Show Gist options
  • Save ismail1432/668b1cc618a07639d686eedd62d073aa to your computer and use it in GitHub Desktop.
Save ismail1432/668b1cc618a07639d686eedd62d073aa to your computer and use it in GitHub Desktop.
trait DisableListenerTrait
{
private $enabled = true;
public function disable(): void
{
$this->enabled = false;
}
}
class FooRequestListener
{
use DisableListenerTrait;
// ...
}
class UserSubscriber
{
use DisableListenerTrait;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment