| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class SettingsQueryBuilder extends EloquentBuilder |
||
| 12 | { |
||
| 13 | |||
| 14 | 2 | public function find($id, $columns = [ '*' ]): mixed |
|
| 15 | { |
||
| 16 | 2 | return $this->get()->firstWhere(InternalSettingsModel::ATTR_ID, $id); |
|
| 17 | } |
||
| 18 | |||
| 19 | 2 | public function first($columns = [ '*' ]): mixed |
|
| 31 | } |
||
| 32 | |||
| 33 | 1 | public function exists(): bool |
|
| 36 | } |
||
| 37 | } |
||
| 38 |