Skip to content

Commit

Permalink
fix(laravel): range filter const
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan committed Sep 11, 2024
1 parent c3e02d3 commit caf0d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Laravel/Eloquent/Filter/RangeFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ final class RangeFilter implements FilterInterface, JsonSchemaFilterInterface, O
{
use QueryPropertyTrait;

private const array OPERATOR_VALUE = [
private const OPERATOR_VALUE = [
'lt' => '<',
'gt' => '>',
'lte' => '<=',
Expand Down

0 comments on commit caf0d3d

Please sign in to comment.