Issues (10)

src/Models/Subscription.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Faithgen\Miscellaneous\Models;
4
5
use FaithGen\SDK\Models\UuidModel;
6
use Illuminate\Notifications\Notifiable;
7
8
class Subscription extends UuidModel
9
{
10
    use Notifiable;
0 ignored issues
show
The trait Illuminate\Notifications\Notifiable requires the property $email which is not provided by Faithgen\Miscellaneous\Models\Subscription.
Loading history...
11
12
    protected $table = 'fg_subscriptions';
13
}
14