mirror of
https://github.com/flarum/core.git
synced 2025-07-24 18:21:33 +02:00
Avoid usage of facade in user model
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
use Illuminate\Contracts\Hashing\Hasher;
|
||||
use Tobscure\Permissible\Permissible;
|
||||
use Flarum\Core\Formatter\FormatterManager;
|
||||
use Flarum\Core\Exceptions\InvalidConfirmationTokenException;
|
||||
use Flarum\Core\Events\UserWasDeleted;
|
||||
use Flarum\Core\Events\UserWasRegistered;
|
||||
use Flarum\Core\Events\UserWasRenamed;
|
||||
@@ -323,7 +322,7 @@ class User extends Model
|
||||
->whereIn('type', array_filter($types, [$this, 'shouldAlert']))
|
||||
->where('time', '>', $this->notification_read_time ?: 0)
|
||||
->where('is_read', 0)
|
||||
->count(\DB::raw('DISTINCT type, subject_id'));
|
||||
->count($this->getConnection()->raw('DISTINCT type, subject_id'));
|
||||
}
|
||||
|
||||
public function getPreferencesAttribute($value)
|
||||
|
Reference in New Issue
Block a user