Skip to content

Commit

Permalink
(WW-2402) remove use of "static" in callable
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Haag committed Jul 24, 2024
1 parent 40acd09 commit a6f5155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion warpwire/src/Lib/WarpwireLtiUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ static function buildHttpQuery($params)
static function urlencodeRfc3986(mixed $input)
{
if (is_array($input)) {
return array_map('static::urlencodeRfc3986', $input);
return array_map([WarpwireLtiUtils::class, 'urlencodeRfc3986'], $input);
} elseif (is_scalar($input)) {
return str_replace(
'+',
Expand Down

0 comments on commit a6f5155

Please sign in to comment.