Skip to content

Commit 5897e91

Browse files
committed
Fix search filters reported in #6
1 parent 6133b20 commit 5897e91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/XIVAPI/Api/SearchFilters.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ class SearchFilters
77
const EQUAL_TO = '=';
88
const GREATER_THAN = '>';
99
const GREATER_THAN_OR_EQUAL_TO = '>=';
10-
const LESS_THAN = '>';
11-
const LESS_THAN_OR_EQUAL_TO = '>=';
10+
const LESS_THAN = '<';
11+
const LESS_THAN_OR_EQUAL_TO = '<=';
1212
}

0 commit comments

Comments
 (0)