| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 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 | return $this->morphMany($notificationClass, 'notifiable') |
||
|
|
|||
| 24 | ->orderBy('created_at', 'desc'); |
||
| 25 | } |
||
| 45 |