Skip to content

Commit

Permalink
apply coding standard
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmilash committed Oct 7, 2021
1 parent e988334 commit bcf753c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DMS/Filter/Filters/Trim.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

use DMS\Filter\Rules\Rule;

use function is_string;
use function trim;

/**
Expand All @@ -22,7 +23,7 @@ public function apply(Rule $rule, $value)
if (! is_string($value)) {
return $value;
}

//trim() only operates in default mode
//if no second argument is passed, it
//cannot be passed as null
Expand Down

0 comments on commit bcf753c

Please sign in to comment.