File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -25,3 +25,4 @@ yarn-error.log
2525resources /js /ziggy.js
2626.phpstorm.meta.php
2727_ide_helper.php
28+ build /
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ final class UserFactory extends Factory
2222 /**
2323 * Define the model's default state.
2424 *
25- * @return array<string , mixed>
25+ * @return array<model-property<User> , mixed>
2626 */
2727 public function definition (): array
2828 {
Original file line number Diff line number Diff line change @@ -6,7 +6,11 @@ parameters:
66 - routes
77 - bootstrap/app.php
88 - bootstrap/providers.php
9+ - public/index.php
10+ tmpDir : build/phpstan
911 reportUnmatchedIgnoredErrors : true
12+ checkOctaneCompatibility : true
13+ checkModelProperties : true
1014 ignoreErrors :
1115 -
1216 message : ' #Dynamic call to static method Illuminate\\Http\\Request::validate\(\).#'
Original file line number Diff line number Diff line change 1919 __DIR__ .'/app/Models/*.php ' ,
2020 ],
2121 ])
22- ->withPreparedSets (
23- deadCode: true ,
24- codeQuality: true ,
25- typeDeclarations: true ,
26- privatization: true ,
27- earlyReturn: true ,
28- strictBooleans: true ,
29- );
22+ ->withTypeCoverageLevel (10 )
23+ ->withDeadCodeLevel (10 )
24+ ->withCodeQualityLevel (10 );
You can’t perform that action at this time.
0 commit comments