Skip to content

Commit

Permalink
Merge pull request #16 from Hikariii/bugfix-postgres
Browse files Browse the repository at this point in the history
rename duplicate class and function name
  • Loading branch information
Hikariii authored Feb 14, 2017
2 parents 4d97eba + c3ce971 commit 55ad3e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Query/AST/Functions/Postgresql/JsonSharpGt.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class JsonSharpGt extends FunctionNode
{
const FUNCTION_NAME = 'GT';
const FUNCTION_NAME = 'SHARP_GT';
const OPERATOR = '#>';

/** @var \Doctrine\ORM\Query\AST\Node */
Expand Down
4 changes: 2 additions & 2 deletions src/Query/AST/Functions/Postgresql/JsonSharpGtGt.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
use Doctrine\ORM\Query\SqlWalker;


class JsonSharpGt extends FunctionNode
class JsonSharpGtGt extends FunctionNode
{
const FUNCTION_NAME = 'GT';
const FUNCTION_NAME = 'SHARP_GT_GT';
const OPERATOR = '#>>';

/** @var \Doctrine\ORM\Query\AST\Node */
Expand Down

0 comments on commit 55ad3e5

Please sign in to comment.