Skip to content

Commit a6f5155

Browse files
committed
(WW-2402) remove use of "static" in callable
1 parent 40acd09 commit a6f5155

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

warpwire/src/Lib/WarpwireLtiUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ static function buildHttpQuery($params)
157157
static function urlencodeRfc3986(mixed $input)
158158
{
159159
if (is_array($input)) {
160-
return array_map('static::urlencodeRfc3986', $input);
160+
return array_map([WarpwireLtiUtils::class, 'urlencodeRfc3986'], $input);
161161
} elseif (is_scalar($input)) {
162162
return str_replace(
163163
'+',

0 commit comments

Comments
 (0)