Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
marco76tv committed Sep 17, 2024
1 parent 7a6003f commit e547d32
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Models/BaseModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ abstract class BaseModel extends Model
/** @var string */
protected $primaryKey = 'id';

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

Expand Down
4 changes: 2 additions & 2 deletions Models/Chart.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
*/
class Chart extends BaseModel
{
/** @var array<int, string> */
protected $fillable = [
/** @var list<string> */
protected $fillable = [
'id',
'post_id',
'post_type',
Expand Down
4 changes: 2 additions & 2 deletions Models/MixedChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
*/
class MixedChart extends BaseModel
{
/** @var array<int, string> */
protected $fillable = [
/** @var list<string> */
protected $fillable = [
'id',
'name',
];
Expand Down

0 comments on commit e547d32

Please sign in to comment.