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.
Completed
Push — master ( 55318a...b54c2e )
by Oleg
02:27
created
src/Route4Me/Route4Me.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -207,12 +207,16 @@  discard block
 block discarded – undo
207 207
 
208 208
     /**
209 209
      * @param $object: JSON object
210
+     * @param \SimpleXMLElement $object
210 211
      */
211 212
     public static function object2array($object)
212 213
     {
213 214
         return @json_decode(@json_encode($object), 1);
214 215
     }
215 216
 
217
+    /**
218
+     * @param string $url
219
+     */
216 220
     public static function makeUrlRequst($url, $options) {
217 221
         $method = isset($options['method']) ? $options['method'] : 'GET';
218 222
         $query = isset($options['query']) ?
@@ -377,6 +381,7 @@  discard block
 block discarded – undo
377 381
      * Returns an array of the object properties
378 382
      * @param $object: An object.
379 383
      * @param $exclude: array of the object parameters to be excluded from the returned array.
384
+     * @param string[] $exclude
380 385
      */
381 386
     public static function getObjectProperties($object, $exclude)
382 387
     {
@@ -397,6 +402,7 @@  discard block
 block discarded – undo
397 402
      * Returns url path generated from the array of the fields and parameters.
398 403
      * @param $allFields; array of the paossible fields (parameter names).
399 404
      * @param $params: input parameters (array or object).
405
+     * @param string[] $allFields
400 406
      */
401 407
     public static function generateUrlPath($allFields, $params)
402 408
     {
Please login to merge, or discard this patch.