Skip to content

Commit

Permalink
array_unique fixed to use SORT_REGULAR
Browse files Browse the repository at this point in the history
  • Loading branch information
kg-bot committed Jul 1, 2019
1 parent 95f1054 commit 58f1301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Builders/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected function parseFilters($filters = [] )

if ( count( $filters ) > 0 ) {

$filters = array_unique($filters);
$filters = array_unique($filters, SORT_REGULAR);

$i = 1;

Expand Down

0 comments on commit 58f1301

Please sign in to comment.