Issues (264)

app/Models/DatabaseNotification.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Xetaravel\Models;
6
7
use Illuminate\Database\Eloquent\Factories\HasFactory;
8
use Illuminate\Notifications\DatabaseNotification as BaseDatabaseNotification;
9
10
class DatabaseNotification extends BaseDatabaseNotification
11
{
12
    use HasFactory;
0 ignored issues
show
The trait Illuminate\Database\Eloquent\Factories\HasFactory requires the property $factoryClass which is not provided by Xetaravel\Models\DatabaseNotification.
Loading history...
13
}
14