Skip to content

Commit

Permalink
fix: fix model property types (#1234)
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor committed May 23, 2022
1 parent 174007d commit 99861c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stubs/Model.stub
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
protected $casts = [];

/**
* @var array<int, string>
* @var list<string>
*/
protected $hidden = [];

/**
* @var array<int, string>
* @var list<string>
*/
protected $visible = [];

Expand Down

0 comments on commit 99861c5

Please sign in to comment.