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
Branch Editing-Fixing (c4d168)
by Igor
03:30
created
src/Route4Me/AddressBookLocation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -143,6 +143,9 @@
 block discarded – undo
143 143
         return null;
144 144
     }
145 145
     
146
+    /**
147
+     * @param AddressBookLocation $params
148
+     */
146 149
     public static function addAdressBookLocation($params)
147 150
     {
148 151
         $body = array();
Please login to merge, or discard this patch.
src/Route4Me/Order.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -71,6 +71,9 @@
 block discarded – undo
71 71
         return $order;
72 72
     }
73 73
     
74
+    /**
75
+     * @param Order $params
76
+     */
74 77
     public static function addOrder($params)
75 78
     {
76 79
         $response = Route4Me::makeRequst(array(
Please login to merge, or discard this patch.
src/Route4Me/Route4Me.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -200,6 +200,9 @@
 block discarded – undo
200 200
         }
201 201
     }
202 202
 
203
+    /**
204
+     * @param \SimpleXMLElement $object
205
+     */
203 206
     public static function object2array($object)
204 207
     {
205 208
         return @json_decode(@json_encode($object),1);
Please login to merge, or discard this patch.