1: <?php
2:
3: namespace Yajra\Datatables\Contracts;
4:
5: /**
6: * Interface DataTableScopeContract.
7: *
8: * @package Yajra\Datatables\Contracts
9: * @author Arjay Angeles <aqangeles@gmail.com>
10: */
11: interface DataTableScopeContract
12: {
13: /**
14: * Apply a query scope.
15: *
16: * @param \Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder $query
17: * @return mixed
18: */
19: public function apply($query);
20: }
21: