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 ( 9c0c8a...f2b063 )
by Brad
05:17 queued 02:45
created
pro/includes/video/class-foogallery-pro-video-query.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
 		}
72 72
 
73 73
 		/**
74
-		 * @param $query
74
+		 * @param string $query
75 75
 		 * @param int $page
76 76
 		 * @param int $offset
77 77
 		 * @return array
Please login to merge, or discard this patch.
pro/extensions/default-templates/slider/class-slider-gallery-template.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 		 * Register myself so that all associated JS and CSS files can be found and automatically included
21 21
 		 * @param $extensions
22 22
 		 *
23
-		 * @return array
23
+		 * @return string[]
24 24
 		 */
25 25
 		function register_myself( $extensions ) {
26 26
 			$extensions[] = __FILE__;
Please login to merge, or discard this patch.
pro/includes/video/class-foogallery-pro-video-vimeo.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@  discard block
 block discarded – undo
58 58
 			die();
59 59
 		}
60 60
 
61
+		/**
62
+		 * @param string $token
63
+		 */
61 64
 		public function verify_token($token){
62 65
 
63 66
 			$remote = wp_remote_get("https://api.vimeo.com/oauth/verify", array(
@@ -145,6 +148,9 @@  discard block
 block discarded – undo
145 148
 			return $this->error_response("Unrecognized Vimeo url.");
146 149
 		}
147 150
 
151
+		/**
152
+		 * @param string $id
153
+		 */
148 154
 		public function fetch_video($id) {
149 155
 			if (!is_numeric($id)) {
150 156
 				return $this->error_response("Invalid video id supplied.");
@@ -182,6 +188,10 @@  discard block
 block discarded – undo
182 188
 			return $response;
183 189
 		}
184 190
 
191
+		/**
192
+		 * @param string $type
193
+		 * @param string $id
194
+		 */
185 195
 		public function fetch_stream($type, $id, $page = 1, $offset = 0) {
186 196
 			$supports = array("album", "channel", "user");
187 197
 
Please login to merge, or discard this patch.