Skip to content

Commit

Permalink
phpstan fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rez1dent3 committed Mar 9, 2024
1 parent 22b2f45 commit fefcc10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Models/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Transaction extends Model
final public const TYPE_WITHDRAW = 'withdraw';

/**
* @var string[]
* @var array<int,string>
*/
protected $fillable = [
'payable_type',
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Transfer.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Transfer extends Model
final public const STATUS_GIFT = 'gift';

/**
* @var string[]
* @var array<int,string>
*/
protected $fillable = [
'status',
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Wallet.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Wallet extends Model implements Customer, WalletFloat, Confirmable, Exchan
use HasGift;

/**
* @var string[]
* @var array<int,string>
*/
protected $fillable = [
'holder_type',
Expand Down

0 comments on commit fefcc10

Please sign in to comment.