Skip to content

Commit

Permalink
Fix search filters reported in #6
Browse files Browse the repository at this point in the history
  • Loading branch information
vekien committed Apr 11, 2019
1 parent 6133b20 commit 5897e91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/XIVAPI/Api/SearchFilters.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ class SearchFilters
const EQUAL_TO = '=';
const GREATER_THAN = '>';
const GREATER_THAN_OR_EQUAL_TO = '>=';
const LESS_THAN = '>';
const LESS_THAN_OR_EQUAL_TO = '>=';
const LESS_THAN = '<';
const LESS_THAN_OR_EQUAL_TO = '<=';
}

0 comments on commit 5897e91

Please sign in to comment.