Skip to content

Commit a2ebe49

Browse files
committed
unsetExpression can be private
1 parent b0aa47e commit a2ebe49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Analyser/MutatingScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4250,7 +4250,7 @@ public function assignVariable(string $variableName, Type $type, Type $nativeTyp
42504250
return $scope;
42514251
}
42524252

4253-
public function unsetExpression(Expr $expr): self
4253+
private function unsetExpression(Expr $expr): self
42544254
{
42554255
$scope = $this;
42564256
if ($expr instanceof Expr\ArrayDimFetch && $expr->dim !== null) {

0 commit comments

Comments
 (0)