Skip to content

Commit

Permalink
Hotfix/Array to String on Filter from Array (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
othercodes authored Aug 14, 2024
1 parent b1c923c commit 5940732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static function fromArray(array $filter): self
: self::create(
"{$filter['field']}",
Operator::create("{$filter['operator']}"),
"{$filter['value']}"
$filter['value']
);
}

Expand Down

0 comments on commit 5940732

Please sign in to comment.