Skip to content

Commit e2f517e

Browse files
committed
re-run rector
1 parent 87af091 commit e2f517e

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

rules/Symfony30/Rector/MethodCall/StringFormTypeToClassRector.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ public function refactor(Node $node): ?Node
7373
return null;
7474
}
7575

76-
/** @var String_ $stringNode */
7776
$stringNode = $firstArg->value;
7877

7978
// not a form type string

rules/Symfony44/Rector/ClassMethod/ConsoleExecuteReturnIntRector.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,13 +163,11 @@ private function isReturnIntegerType(?Expr $expr): bool
163163

164164
private function isIntegerTernaryIfElse(Ternary $ternary): bool
165165
{
166-
/** @var Expr|null $if */
167166
$if = $ternary->if;
168167
if (! $if instanceof Expr) {
169168
$if = $ternary->cond;
170169
}
171170

172-
/** @var Expr $else */
173171
$else = $ternary->else;
174172
$ifType = $this->getType($if);
175173
$elseType = $this->getType($else);

0 commit comments

Comments
 (0)