mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-06 06:01:21 +00:00
More phpstan issues fixed.
This commit is contained in:
@@ -126,11 +126,7 @@ class TransactionJournal extends Model
|
||||
use HasFactory;
|
||||
use SoftDeletes;
|
||||
|
||||
/**
|
||||
* The attributes that should be casted to native types.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
|
||||
protected $casts
|
||||
= [
|
||||
'created_at' => 'datetime',
|
||||
@@ -146,7 +142,7 @@ class TransactionJournal extends Model
|
||||
'completed' => 'boolean',
|
||||
];
|
||||
|
||||
/** @var array Fields that can be filled */
|
||||
|
||||
protected $fillable
|
||||
= [
|
||||
'user_id',
|
||||
@@ -160,7 +156,7 @@ class TransactionJournal extends Model
|
||||
'order',
|
||||
'date',
|
||||
];
|
||||
/** @var array Hidden from view */
|
||||
|
||||
protected $hidden = ['encrypted'];
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user