GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Failed
Push — master ( 004efd...1e9f36 )
by cao
15:19
created
src/Docgen/Swagger/Swagger.php 1 patch
Braces   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             $ins = null;
139 139
             try{
140 140
                 $ins = $app->make($name);
141
-            }catch (\Exception $e){
141
+            } catch (\Exception $e){
142 142
 
143 143
             }
144 144
 
@@ -219,9 +219,9 @@  discard block
 block discarded – undo
219 219
     {
220 220
         if ($content instanceof ReturnMeta || $content instanceof ParamMeta) {
221 221
             return $this->makeExample($content->container);
222
-        }elseif ($content instanceof TypeContainerInterface){
222
+        } elseif ($content instanceof TypeContainerInterface){
223 223
             return $content->makeExample();
224
-        }elseif(is_array($content)) {
224
+        } elseif(is_array($content)) {
225 225
             $res = [];
226 226
             foreach ($content as $k => $v) {
227 227
                 $res[$k] = $this->makeExample($v);
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
                     $paramSchema = new PrimitiveSchemaObject();
377 377
                     if($isFile){
378 378
                         $paramSchema->type = 'file';
379
-                    }else{
379
+                    } else{
380 380
                         $paramSchema->type = self::mapType($param->type);
381 381
                         self::mapValidation($param->validation, $paramSchema);
382 382
                     }
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
         } elseif($container == null){
435 435
             $schema = null ;//new PrimitiveSchemaObject();
436 436
             //$schema->type = null;
437
-        }else {
437
+        } else {
438 438
             $schema = new PrimitiveSchemaObject();
439 439
             //$schema->type = 'mixed';
440 440
         }
Please login to merge, or discard this patch.