Skip to content

Commit 334c6c6

Browse files
committed
Update ParserInference.php
1 parent 1872220 commit 334c6c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SqlAst/ParserInference.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function narrowResultType(string $queryString, ConstantArrayType $resultT
7474
$fromTable = $this->schemaReflection->getTable($fromName);
7575
} elseif ($from instanceof Join) {
7676
while (1) {
77-
if (!$from instanceof Join || !method_exists($from, 'getCondition')) {
77+
if (! $from instanceof Join || ! method_exists($from, 'getCondition')) {
7878
return $resultType;
7979
}
8080

0 commit comments

Comments
 (0)