@@ -42,7 +42,7 @@ |
||
| 42 | 42 | $cape = ''; |
| 43 | 43 | |
| 44 | 44 | if (\array_key_exists('properties', $response)) { |
| 45 | - $textures = \array_filter($response['properties'], static function ($entry) { |
|
| 45 | + $textures = \array_filter($response['properties'], static function($entry) { |
|
| 46 | 46 | return $entry['name'] === 'textures'; |
| 47 | 47 | }); |
| 48 | 48 | |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | $route[2]['uuidOrName'] = \preg_replace('#[^a-zA-Z0-9_]#', '', $route[2]['uuidOrName']); |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | - $request->setRouteResolver(static function () use ($route) { |
|
| 21 | + $request->setRouteResolver(static function() use ($route) { |
|
| 22 | 22 | return $route; |
| 23 | 23 | }); |
| 24 | 24 | |