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 ( 386c7e...6cd0a7 )
by Oleg
05:41 queued 47s
created
src/Route4Me/Route4Me.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -204,6 +204,9 @@
 block discarded – undo
204 204
         }
205 205
     }
206 206
 
207
+	/**
208
+	 * @param string $url
209
+	 */
207 210
 	public static function makeUrlRequst($url, $options) {
208 211
 		$method = isset($options['method']) ? $options['method'] : 'GET';
209 212
         $query = isset($options['query']) ?
Please login to merge, or discard this patch.
src/Route4Me/AddressBookLocation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -103,6 +103,9 @@
 block discarded – undo
103 103
 			return $ablocations;
104 104
 		}
105 105
 		
106
+		/**
107
+		 * @param AddressBookLocation $params
108
+		 */
106 109
 		public static function addAdressBookLocation($params)
107 110
 	    {
108 111
 	    	$ablocations = Route4Me::makeRequst(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
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
 			return $order;
60 60
 		}
61 61
 		
62
+		/**
63
+		 * @param Order $params
64
+		 */
62 65
 		public static function addOrder($params)
63 66
 	    {
64 67
 	    	$response = Route4Me::makeRequst(array(
Please login to merge, or discard this patch.