Skip to content

Commit

Permalink
Composer: Update all deps
Browse files Browse the repository at this point in the history
Fix new highlighted PHPStan issue:

 ------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  Line   app/Models/User.php
 ------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  24     PHPDoc type array<string> of property App\Models\User::$fillable is not the same as PHPDoc type array<int, string> of overridden property Illuminate\Database\Eloquent\Model::$fillable.
         💡 You can fix 3rd party PHPDoc types with stub files:
         💡 https://phpstan.org/user-guide/stub-files

 ------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  • Loading branch information
philbates35 committed Feb 29, 2024
1 parent f05d177 commit eb1ca1b
Show file tree
Hide file tree
Showing 2 changed files with 130 additions and 129 deletions.
2 changes: 1 addition & 1 deletion app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class User extends Authenticatable
/**
* The attributes that are mass assignable.
*
* @var array<string>
* @var array<int, string>
*/
protected $fillable = [
'name',
Expand Down
Loading

0 comments on commit eb1ca1b

Please sign in to comment.