| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | trait HasDatabaseNotifications |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Get the entity's notifications. |
||
| 15 | */ |
||
| 16 | public function notifications() |
||
| 17 | { |
||
| 18 | if (env('DB_CONNECTION') === 'mongodb') { |
||
| 19 | $notificationClass = \Foundation\Models\MongoDatabaseNotification::class; |
||
|
|
|||
| 20 | } else { |
||
| 21 | $notificationClass = \Illuminate\Notifications\DatabaseNotification::class; |
||
| 22 | } |
||
| 23 | |||
| 24 | return $this->morphMany($notificationClass, 'notifiable') |
||
| 25 | ->orderBy('created_at', 'desc'); |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Get the entity's read notifications. |
||
| 30 | */ |
||
| 31 | public function readNotifications() |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Get the entity's unread notifications. |
||
| 39 | */ |
||
| 40 | public function unreadNotifications() |
||
| 44 | } |
||
| 45 | } |
||
| 46 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths