Skip to content

Commit d9b3f0a

Browse files
committed
update
1 parent 7305eb4 commit d9b3f0a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

rules/CodeQuality/Rector/MethodCall/AssertTrueFalseToSpecificMethodRector.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,10 @@ public function refactor(Node $node): ?Node
104104
}
105105

106106
if ($firstArgumentName === 'is_a') {
107-
/**
108-
* @var FuncCall $firstArgumentValue
109-
* @var array<Arg>
110-
**/
107+
/** @var FuncCall $firstArgumentValue */
111108
$args = $firstArgumentValue->getArgs();
109+
110+
/** @var array<Arg> $args */
112111
if ($args === []) {
113112
return null;
114113
}

0 commit comments

Comments
 (0)