Skip to content

Commit d1b77a4

Browse files
committed
Fix phpstan
1 parent e803607 commit d1b77a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rules/TypeDeclaration/NodeAnalyzer/CallTypesResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function resolveStrictTypesFromCalls(array $calls): array
4040
$staticTypesByArgumentPosition = [];
4141

4242
foreach ($calls as $call) {
43-
foreach ($call->getArgs() as $position => $arg) {
43+
foreach ($call->args as $position => $arg) {
4444
if ($this->shouldSkipArg($arg)) {
4545
return [];
4646
}

0 commit comments

Comments
 (0)