Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class Latest implements Criterion |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $column; |
||
14 | |||
15 | /** |
||
16 | * Latest constructor. |
||
17 | * |
||
18 | * @param string $column |
||
19 | */ |
||
20 | public function __construct(string $column = 'id') |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param Builder|mixed $model |
||
27 | * |
||
28 | * @return Builder|mixed |
||
29 | */ |
||
30 | public function apply($model) |
||
35 |