1 | <?php |
||
12 | class EloquentDataProvider extends AbstractDataProvider |
||
13 | { |
||
14 | /** |
||
15 | * Constructor. |
||
16 | * |
||
17 | * @param Builder|EloquentBuilder|string $src Illuminate\Database\Eloquent\Builder instance |
||
18 | * or Illuminate\Database\Query\Builder instance |
||
19 | * or class name of target Eloquent model |
||
20 | * @param OperationInterface[] $operations |
||
21 | */ |
||
22 | public function __construct($src, array $operations = []) |
||
32 | |||
33 | protected function validateSource($src) |
||
47 | } |
||
48 |