Skip to content

Commit

Permalink
Update src/Driver/Compiler.php
Browse files Browse the repository at this point in the history
  • Loading branch information
roxblnfk authored Apr 3, 2024
1 parent 91748fe commit ec3d1ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Driver/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,9 @@ protected function optional(string $prefix, string $expression, string $postfix
return $prefix . $expression . $postfix;
}

protected function isJsonPath(string $selector): bool
protected function isJsonPath(string $column): bool
{
return \str_contains($selector, '->');
return \str_contains($column, '->');
}

/**
Expand Down

0 comments on commit ec3d1ed

Please sign in to comment.