File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 77 name : PHPUnit on PHP v${{ matrix.php }} ${{ matrix.dependencies }}
88 runs-on : ubuntu-latest
99 strategy :
10- fail-fast : true
1110 matrix :
1211 php : [ 8.2, 8.3, 8.4 ]
1312 dependencies : ['', --prefer-lowest]
3938 ${{ runner.os }}-php-
4039
4140 - name : Install dependencies
42- run : composer install --prefer-dist --no-progress ${{ matrix.dependencies }}
41+ run : composer update --prefer-dist --no-progress ${{ matrix.dependencies }}
4342
4443 - name : Execute phpunit
4544 run : composer test -- --colors=always
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ private function reflectionTypeClassName(Type $type): ?string
8787
8888 private function typeFromMethodCall (MethodCall $ methodCall , Scope $ scope ): ?Type
8989 {
90+ /** @phpstan-ignore function.alreadyNarrowedType */
9091 $ nameArg = method_exists ($ methodCall , 'getArg ' ) ?
9192 $ methodCall ->getArg ('name ' , 0 ) :
9293 $ methodCall ->getArgs ()[0 ] ?? null ;
You can’t perform that action at this time.
0 commit comments