Total Complexity | 7 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | trait SoftDeletes |
||
12 | { |
||
13 | public function withTrashed(): self |
||
17 | } |
||
18 | |||
19 | public function withoutTrashed(): self |
||
24 | } |
||
25 | |||
26 | public function onlyTrashed(): self |
||
31 | } |
||
32 | |||
33 | protected function getSoftDeletesDefaultBindings(): array |
||
42 | ]), |
||
43 | ]; |
||
44 | } |
||
45 | |||
46 | protected function getDeletedAtColumnName(): string |
||
49 | } |
||
50 | |||
51 | protected function isTrashFilterActivated(): bool |
||
56 |