Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Created October 31, 2019 23:00
Show Gist options
  • Save ismail1432/e0452a005f734e152bc4d1e846f6c4aa to your computer and use it in GitHub Desktop.
Save ismail1432/e0452a005f734e152bc4d1e846f6c4aa to your computer and use it in GitHub Desktop.
<?php
class UserSubscriber
{
private $enabled = true;
// ...
public function supports($entity): bool
{
return $entity instanceof User && $this->enabled;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment