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
Bug
introduced
by
![]() |
|||
13 | } |
||
14 |