Skip to content

Commit 6905a29

Browse files
author
DKravtsov
committed
updated packages
1 parent fd9c828 commit 6905a29

File tree

13 files changed

+1021
-846
lines changed

13 files changed

+1021
-846
lines changed

app/Exceptions/Handler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ class Handler extends ExceptionHandler
1212
/**
1313
* A list of the exception types that are not reported.
1414
*
15-
* @var array
15+
* @var string[]
1616
*/
1717
protected $dontReport = [];
1818

1919
/**
2020
* A list of the inputs that are never flashed for validation exceptions.
2121
*
22-
* @var array
22+
* @var string[]
2323
*/
2424
protected $dontFlash = [
2525
'current_password',

app/Models/User.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class User extends Authenticatable
1818
/**
1919
* The attributes that are mass assignable.
2020
*
21-
* @var array
21+
* @var string[]
2222
*/
2323
protected $fillable = [
2424
'name',

composer.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"require-dev": {
4040
"bamarni/composer-bin-plugin": "^1.4",
4141
"barryvdh/laravel-ide-helper": "^2.10",
42-
"ergebnis/composer-normalize": "^2.13",
42+
"ergebnis/composer-normalize": "^2.15",
4343
"facade/ignition": "^2.5",
4444
"fakerphp/faker": "^1.9",
4545
"laravel/sail": "^1.0",
@@ -84,10 +84,7 @@
8484
"PHPMD\\": "tools/06_phpmd/vendor/phpmd/phpmd/src/bin",
8585
"PhpCsFixer\\": "tools/03_ecs/vendor/symplify/easy-coding-standard/vendor/friendsofphp/php-cs-fixer/src",
8686
"Symplify\\CodingStandard\\": "tools/03_ecs/vendor/symplify/easy-coding-standard/vendor/symplify/coding-standard/src",
87-
"Symplify\\RuleDocGenerator\\": "tools/03_ecs/vendor/symplify/easy-coding-standard/vendor/symplify/rule-doc-generator-contracts/src",
88-
"PHPStan\\PhpDoc\\PHPUnit\\": "tools/02_phpstan/vendor/phpstan/phpstan-phpunit/src/PhpDoc/PHPUnit",
89-
"PHPStan\\Rules\\PHPUnit\\": "tools/02_phpstan/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit",
90-
"PHPStan\\Type\\PHPUnit\\": "tools/02_phpstan/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit"
87+
"Symplify\\RuleDocGenerator\\": "tools/03_ecs/vendor/symplify/easy-coding-standard/vendor/symplify/rule-doc-generator-contracts/src"
9188
}
9289
},
9390
"minimum-stability": "dev",

0 commit comments

Comments
 (0)