Skip to content

Commit

Permalink
[Athena] Rename filters
Browse files Browse the repository at this point in the history
  • Loading branch information
that-guy-iain committed Nov 27, 2023
1 parent 7802569 commit 8a1b6e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
use Doctrine\ORM\Query;
use Doctrine\ORM\QueryBuilder;

class GreaterOrEqualThanFilter implements DoctrineFilterInterface
class GreaterThanOrEqualFilter implements DoctrineFilterInterface
{
use QueryBuilderTrait;

public const NAME = 'greater_or_equal_than';
public const NAME = 'greater_than_or_equal';

protected string $fieldName;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
use Parthenon\Athena\Filters\FilterInterface;
use Parthenon\Athena\Filters\QueryBuilderTrait;

class LessOrEqualThanFilter implements DoctrineFilterInterface
class LessThanOrEqualFilter implements DoctrineFilterInterface
{
use QueryBuilderTrait;

public const NAME = 'less_or_equal_than';
public const NAME = 'less_than_or_equal';

protected string $fieldName;

Expand Down

0 comments on commit 8a1b6e1

Please sign in to comment.