Skip to content

Commit

Permalink
refactor: QueryDefaultOperator as backed enum
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed Feb 20, 2024
1 parent aaa78a0 commit 8856dac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Dto/Search/Query/QueryDefaultOperator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Atoolo\Search\Dto\Search\Query;

enum QueryDefaultOperator
enum QueryDefaultOperator: string
{
case AND;
case OR;
case AND = 'AND';
case OR = 'OR';
}

0 comments on commit 8856dac

Please sign in to comment.