Skip to content

Commit

Permalink
version 5.0.3 (#2183)
Browse files Browse the repository at this point in the history
* version 5.0.3
* fix phpstan
* composer update
  • Loading branch information
ildyria authored Jan 12, 2024
1 parent 378f424 commit b8ace78
Show file tree
Hide file tree
Showing 6 changed files with 229 additions and 266 deletions.
1 change: 1 addition & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ function (PhpCsFixer\Finder $finder, $dir) {
'nullable_type_declaration_for_default_null_value' => true,
'align_multiline_comment' => true,
'array_indentation' => true,
'fully_qualified_strict_types' => false,
'backtick_to_shell_exec' => true,
'increment_style' => ['style' => 'post'],
'indentation_type' => true,
Expand Down
6 changes: 3 additions & 3 deletions app/Models/SizeVariant.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ class SizeVariant extends Model
];

/**
* @var string[] The list of "virtual" attributes which do not exist as
* columns of the DB relation but which shall be appended to
* JSON from accessors
* @var array<int,string> The list of "virtual" attributes which do not exist as
* columns of the DB relation but which shall be appended to
* JSON from accessors
*/
protected $appends = [
'url',
Expand Down
6 changes: 3 additions & 3 deletions app/Models/TagAlbum.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ class TagAlbum extends BaseAlbum
];

/**
* @var string[] The list of "virtual" attributes which do not exist as
* columns of the DB relation but which shall be appended to
* JSON from accessors
* @var array<int,string> The list of "virtual" attributes which do not exist as
* columns of the DB relation but which shall be appended to
* JSON from accessors
*/
protected $appends = [
'thumb',
Expand Down
Loading

0 comments on commit b8ace78

Please sign in to comment.