JohnDoeScope.php 297 B

1234567891011121314151617
  1. <?php
  2. namespace Adldap\Laravel\Tests\Scopes;
  3. use Adldap\Laravel\Scopes\ScopeInterface;
  4. use Adldap\Query\Builder;
  5. class JohnDoeScope implements ScopeInterface
  6. {
  7. /**
  8. * {@inheritdoc}
  9. */
  10. public function apply(Builder $builder)
  11. {
  12. $builder->whereCn('John Doe');
  13. }
  14. }