Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class GoCardlessMandate extends Model |
||
10 | { |
||
11 | use HasFactory; |
||
12 | |||
13 | public $incrementing = false; |
||
14 | |||
15 | protected $keyType = 'string'; |
||
16 | |||
17 | protected $guarded = []; |
||
18 | |||
19 | protected $casts = [ |
||
20 | 'data' => 'array', |
||
21 | ]; |
||
22 | |||
23 | 5 | public function getTable() |
|
26 | } |
||
27 | |||
28 | 2 | protected static function newFactory(): GoCardlessMandateFactory |
|
33 |