@@ -15,7 +15,7 @@ |
||
15 | 15 | { |
16 | 16 | public function getConvertClosure(?string $from = null, string $to = Strings::ENCODING): \Closure |
17 | 17 | { |
18 | - return function ($value) use ($from, $to) { |
|
18 | + return function($value) use ($from, $to) { |
|
19 | 19 | return is_string($value) ? Strings::convert($value, $from, $to) : $value; |
20 | 20 | }; |
21 | 21 | } |