Skip to content

Commit 0f46ee8

Browse files
committed
fix bc
1 parent fe599b0 commit 0f46ee8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Ast/ExpressionFinder.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,16 @@ public function __construct()
2626
$this->nodeFinder = new NodeFinder();
2727
}
2828

29+
/**
30+
* @param Variable|MethodCall $expr
31+
*
32+
* @deprecated use findAssignmentExpression() instead
33+
*/
34+
public function findQueryStringExpression(Expr $expr): ?Expr
35+
{
36+
return $this->findAssignmentExpression($expr);
37+
}
38+
2939
/**
3040
* @param Variable|MethodCall $expr
3141
*/

0 commit comments

Comments
 (0)