Skip to content

Commit 5940732

Browse files
authored
Hotfix/Array to String on Filter from Array (#25)
1 parent b1c923c commit 5940732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Filter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public static function fromArray(array $filter): self
6363
: self::create(
6464
"{$filter['field']}",
6565
Operator::create("{$filter['operator']}"),
66-
"{$filter['value']}"
66+
$filter['value']
6767
);
6868
}
6969

0 commit comments

Comments
 (0)