Passed
Push — master ( df9d50...7f420f )
by Mattia
03:11
created
app/Minecraft/MojangAccountFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
app/Http/Middleware/CleanupUuidOrName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.