Skip to content

Commit ba83f02

Browse files
author
Josh Freeman
committed
Fix bug with search filters
1 parent 74d0d72 commit ba83f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/XIVAPI/Api/Search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function bool(string $bool): Search
100100

101101
public function filter(string $field, $value, string $operand): Search
102102
{
103-
$this->options->filters[] = "${field}{$operand}{$value}";
103+
$this->options->filters[] = "{$field}{$operand}{$value}";
104104
return $this;
105105
}
106106
}

0 commit comments

Comments
 (0)