| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 5 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 9 | class BlogCommentApprovedAndDefaultOrderScope implements Scope |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * By default only show approved blog comments. |
||
| 13 | * Order by id, asc - which is what we would always want when showing comments. |
||
| 14 | * We do not support comment threads/replies. |
||
| 15 | * |
||
| 16 | * In the admin panel we disable this scope with ::withoutGlobalScopes() or ::withoutGlobalScope(...) |
||
| 17 | */ |
||
| 18 | public function apply(Builder $builder, Model $model) |
||
| 25 |