Skip to content

Commit

Permalink
auto fixes from pre-commit CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
Leone committed Jan 22, 2024
1 parent 899ad16 commit 034ff7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/Url.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function encodeValue($value)
if (empty($value)) {
return $value;
}

$value = strtolower($value);
$value = $this->removeExcludedCharacters($value);
$value = urlencode($value);
Expand Down

0 comments on commit 034ff7b

Please sign in to comment.