mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
Setup pint & run code style fix
This commit is contained in:
@@ -10,15 +10,16 @@ class PaymentMethod extends Model
|
||||
use HasFactory;
|
||||
|
||||
protected $guarded = [
|
||||
'id'
|
||||
'id',
|
||||
];
|
||||
|
||||
public const TYPE_GENERAL = 'GENERAL';
|
||||
|
||||
public const TYPE_MODULE = 'MODULE';
|
||||
|
||||
protected $casts = [
|
||||
'settings' => 'array',
|
||||
'use_test_env' => 'boolean'
|
||||
'use_test_env' => 'boolean',
|
||||
];
|
||||
|
||||
public function setSettingsAttribute($value)
|
||||
|
||||
Reference in New Issue
Block a user