File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed
Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- laravel : [10, 11]
14+ laravel : [10, 11, 12 ]
1515
1616 steps :
1717 - uses : actions/checkout@v2
6161 - name : Commit changes from php-cs-fixer
6262 uses : EndBug/add-and-commit@v5
6363 with :
64- author_name : " PHP CS Fixer "
65- author_email : " phpcsfixer@example .com"
64+ author_name : " github-actions[bot] "
65+ author_email : " github-actions[bot]@users.noreply.github .com"
6666 message : Fix code style (php-cs-fixer)
Original file line number Diff line number Diff line change 2424 },
2525 "require" : {
2626 "php" : " ^8.2" ,
27- "illuminate/support" : " ^10.0|^11.0" ,
28- "illuminate/view" : " ^10.0|^11.0"
27+ "illuminate/support" : " ^10.0|^11.0|^12.0 " ,
28+ "illuminate/view" : " ^10.0|^11.0|^12.0 "
2929 },
3030 "require-dev" : {
31- "orchestra/testbench" : " ^8.0|^9 .0" ,
32- "nunomaduro/larastan" : " ^ 2.4" ,
33- "pestphp/pest" : " ^ 2.0" ,
34- "pestphp/pest-plugin-laravel" : " ^ 2.0" ,
31+ "orchestra/testbench" : " >=8 .0" ,
32+ "nunomaduro/larastan" : " >= 2.4" ,
33+ "pestphp/pest" : " >= 2.0" ,
34+ "pestphp/pest-plugin-laravel" : " >= 2.0" ,
3535 "intervention/image" : " ^2.7"
3636 },
3737 "extra" : {
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ parameters:
1010 universalObjectCratesClasses :
1111 - Illuminate\Routing\Route
1212 - ArchTech\SEO\SEOManager
13- checkMissingIterableValueType : false
1413
1514 ignoreErrors :
1615 - '#^Method ArchTech\\SEO\\SEOManager::flipp\ (\ ) should return static\ (ArchTech\\SEO\\SEOManager\ )\|string but returns array\|string\|null\.$ #'
1716 - '#^Method ArchTech\\SEO\\SEOManager::previewify\ (\ ) should return static\ (ArchTech\\SEO\\SEOManager\ )\|string but returns array\|string\|null\.$ #'
1817 - '#^Method ArchTech\\SEO\\SEOManager::render\ (\ ) has parameter \$args with no type specified\.$ #'
1918 - ' #^Parameter \ #1 \$value of function e expects #'
19+ - identifier : missingType.iterableValue
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ public function tags(): array
240240 /** Has a specific tag been set? */
241241 public function hasRawTag (string $ key ): bool
242242 {
243- return isset ($ this ->tags [$ key ]) && ( $ this -> tags [ $ key ] !== null ) ;
243+ return isset ($ this ->tags [$ key ]);
244244 }
245245
246246 /** Has a specific meta tag been set? */
You can’t perform that action at this time.
0 commit comments