Skip to content

Commit

Permalink
Update DocBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Mar 10, 2024
1 parent c7a25ff commit 4d15de1
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/src/Database/Models/Activity.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Activity extends Model implements ActivityInterface
protected $table = 'activities';

/**
* @var string[] The attributes that are mass assignable.
* @var array<int, string> The attributes that are mass assignable.
*/
protected $fillable = [
'ip_address',
Expand Down
2 changes: 1 addition & 1 deletion app/src/Database/Models/Group.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Group extends Model implements GroupInterface
protected $table = 'groups';

/**
* @var string[] The attributes that are mass assignable.
* @var array<int, string> The attributes that are mass assignable.
*/
protected $fillable = [
'slug',
Expand Down
2 changes: 1 addition & 1 deletion app/src/Database/Models/PasswordReset.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class PasswordReset extends Model implements PasswordResetInterface
protected $table = 'password_resets';

/**
* @var string[] The attributes that are mass assignable.
* @var array<int, string> The attributes that are mass assignable.
*/
protected $fillable = [
'user_id',
Expand Down
2 changes: 1 addition & 1 deletion app/src/Database/Models/Permission.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Permission extends Model implements PermissionInterface
protected $table = 'permissions';

/**
* @var string[] The attributes that are mass assignable.
* @var array<int, string> The attributes that are mass assignable.
*/
protected $fillable = [
'slug',
Expand Down
2 changes: 1 addition & 1 deletion app/src/Database/Models/Persistence.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Persistence extends Model implements PersistenceInterface
protected $table = 'persistences';

/**
* @var string[] The attributes that are mass assignable.
* @var array<int, string> The attributes that are mass assignable.
*/
protected $fillable = [
'user_id',
Expand Down
2 changes: 1 addition & 1 deletion app/src/Database/Models/Role.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Role extends Model implements RoleInterface
protected $table = 'roles';

/**
* @var string[] The attributes that are mass assignable.
* @var array<int, string> The attributes that are mass assignable.
*/
protected $fillable = [
'slug',
Expand Down
2 changes: 1 addition & 1 deletion app/src/Database/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class User extends Model implements UserInterface
protected $table = 'users';

/**
* @var string[] The attributes that are mass assignable.
* @var array<int, string> The attributes that are mass assignable.
*/
protected $fillable = [
'user_name',
Expand Down
2 changes: 1 addition & 1 deletion app/src/Database/Models/Verification.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Verification extends Model implements VerificationInterface
protected $table = 'verifications';

/**
* @var string[] The attributes that are mass assignable.
* @var array<int, string> The attributes that are mass assignable.
*/
protected $fillable = [
'user_id',
Expand Down

0 comments on commit 4d15de1

Please sign in to comment.