Skip to content

Commit b8ace78

Browse files
authored
version 5.0.3 (#2183)
* version 5.0.3 * fix phpstan * composer update
1 parent 378f424 commit b8ace78

File tree

6 files changed

+229
-266
lines changed

6 files changed

+229
-266
lines changed

.php-cs-fixer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ function (PhpCsFixer\Finder $finder, $dir) {
2121
'nullable_type_declaration_for_default_null_value' => true,
2222
'align_multiline_comment' => true,
2323
'array_indentation' => true,
24+
'fully_qualified_strict_types' => false,
2425
'backtick_to_shell_exec' => true,
2526
'increment_style' => ['style' => 'post'],
2627
'indentation_type' => true,

app/Models/SizeVariant.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ class SizeVariant extends Model
121121
];
122122

123123
/**
124-
* @var string[] The list of "virtual" attributes which do not exist as
125-
* columns of the DB relation but which shall be appended to
126-
* JSON from accessors
124+
* @var array<int,string> The list of "virtual" attributes which do not exist as
125+
* columns of the DB relation but which shall be appended to
126+
* JSON from accessors
127127
*/
128128
protected $appends = [
129129
'url',

app/Models/TagAlbum.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ class TagAlbum extends BaseAlbum
8484
];
8585

8686
/**
87-
* @var string[] The list of "virtual" attributes which do not exist as
88-
* columns of the DB relation but which shall be appended to
89-
* JSON from accessors
87+
* @var array<int,string> The list of "virtual" attributes which do not exist as
88+
* columns of the DB relation but which shall be appended to
89+
* JSON from accessors
9090
*/
9191
protected $appends = [
9292
'thumb',

0 commit comments

Comments
 (0)