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.
Passed
Push — master ( f2f29b...9dbfb1 )
by cao
03:07
created
src/Docgen/Swagger/Swagger.php 1 patch
Doc Comments   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     }
94 94
 
95 95
     /**
96
-     * @param $object
96
+     * @param Swagger $object
97 97
      * @return array
98 98
      */
99 99
     static public function objectToArray($object)
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     /**
119 119
      * @param Application $app
120 120
      * @param ControllerContainer $controller
121
-     * @param $action
121
+     * @param integer $action
122 122
      * @param Route $route
123 123
      * @return array
124 124
      */
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
     /**
168 168
      * @param Application $app
169 169
      * @param ControllerContainer $controller
170
-     * @param $action
170
+     * @param integer $action
171 171
      * @param Route $route
172 172
      * @return null|ResponseObject
173 173
      */
@@ -305,6 +305,9 @@  discard block
 block discarded – undo
305 305
         return new RefSchemaObject("#/definitions/$name");
306 306
     }
307 307
 
308
+    /**
309
+     * @param integer $action
310
+     */
308 311
     public function getParamsSchema(Application $app,
309 312
                                     ControllerContainer $controller,
310 313
                                     $action,
@@ -577,6 +580,9 @@  discard block
 block discarded – undo
577 580
         return $className;
578 581
     }
579 582
 
583
+    /**
584
+     * @param string $glue
585
+     */
580 586
     static public function implode($glue , array $pieces )
581 587
     {
582 588
         $pieces = array_filter($pieces, function($i){return trim($i) !== '';});
Please login to merge, or discard this patch.