Skip to content

Commit

Permalink
Fix psalm analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuruuh committed Dec 13, 2023
1 parent 565d108 commit 2aa7a43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/Doctrine/ORM/Query/AST/NamedScalarExpression.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public function __construct(Node $scalarExpression, ?string $name = null)
/**
* {@inheritDoc}
*/
public function dispatch($sqlWalker)
public function dispatch($walker)
{
return $this->innerExpression->dispatch($sqlWalker);
return $this->innerExpression->dispatch($walker);
}
}
3 changes: 0 additions & 3 deletions psalm-baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2050,9 +2050,6 @@
<code><![CDATA[$token->value]]></code>
<code><![CDATA[$token->value]]></code>
</PossiblyNullPropertyFetch>
<PossiblyUndefinedVariable>
<code>$args</code>
</PossiblyUndefinedVariable>
<RedundantConditionGivenDocblockType>
<code>$AST instanceof AST\SelectStatement</code>
<code>$token === Lexer::T_IDENTIFIER</code>
Expand Down

0 comments on commit 2aa7a43

Please sign in to comment.