| 1 | <?php |
||
| 5 | class WithRelationCriterion implements CriterionInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var array|string |
||
| 9 | */ |
||
| 10 | protected $relation; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param array|string $relation |
||
| 14 | */ |
||
| 15 | public function __construct($relation) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param \Illuminate\Database\Eloquent\Builder $query |
||
| 22 | * |
||
| 23 | * @return \Illuminate\Database\Eloquent\Builder |
||
| 24 | */ |
||
| 25 | public function apply($query) |
||
| 31 | } |
||
| 32 |