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 — feature/video-support ( 96814b )
by Brad
05:36
created
freemius/includes/class-fs-admin-notices.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
          * @param string      $title
197 197
          * @param string      $type
198 198
          * @param int|null    $network_level_or_blog_id
199
-         * @param number|null $wp_user_id
199
+         * @param integer $wp_user_id
200 200
          * @param string|null $plugin_title
201 201
          * @param bool        $is_network_and_blog_admins Whether or not the message should be shown both on network and
202 202
          *                                                blog admin pages.
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
          * @since  2.0.0
295 295
          *
296 296
          * @param string        $id
297
-         * @param null|bool|int $network_level_or_blog_id When an integer, use the given blog storage. When `true` use the multisite notices (if there's a network). When `false`, use the current context blog notices. When `null`, the decision which notices manager to use (MS vs. Current S) will be handled internally and determined based on the $id and the context admin (blog admin vs. network level admin).
297
+         * @param integer|null $network_level_or_blog_id When an integer, use the given blog storage. When `true` use the multisite notices (if there's a network). When `false`, use the current context blog notices. When `null`, the decision which notices manager to use (MS vs. Current S) will be handled internally and determined based on the $id and the context admin (blog admin vs. network level admin).
298 298
          *
299 299
          * @return bool
300 300
          */
Please login to merge, or discard this patch.
freemius/includes/managers/class-fs-admin-notice-manager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -336,7 +336,7 @@
 block discarded – undo
336 336
          * @author Vova Feldman (@svovaf)
337 337
          * @since  1.0.9
338 338
          *
339
-         * @param $id
339
+         * @param string $id
340 340
          *
341 341
          * @return bool
342 342
          */
Please login to merge, or discard this patch.
pro/extensions/default-templates/slider/class-slider-gallery-template.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
 		 * Register myself so that all associated JS and CSS files can be found and automatically included
256 256
 		 * @param $extensions
257 257
 		 *
258
-		 * @return array
258
+		 * @return string[]
259 259
 		 */
260 260
 		function register_myself( $extensions ) {
261 261
 			$extensions[] = __FILE__;
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
 		 * Build up the arguments needed for rendering this gallery template
414 414
 		 *
415 415
 		 * @param $args
416
-		 * @return array
416
+		 * @return boolean
417 417
 		 */
418 418
 		function build_gallery_template_arguments( $args ) {
419 419
 			$args = foogallery_gallery_template_setting( 'thumbnail_dimensions', array() );
Please login to merge, or discard this patch.
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/includes/video/class-foogallery-pro-video-vimeo.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -92,6 +92,9 @@  discard block
 block discarded – undo
92 92
 			return $this->error_response("Unrecognized Vimeo url.");
93 93
 		}
94 94
 
95
+		/**
96
+		 * @param string $id
97
+		 */
95 98
 		public function fetch_video($id) {
96 99
 			if (!is_numeric($id)) {
97 100
 				return $this->error_response("Invalid video id supplied.");
@@ -129,6 +132,10 @@  discard block
 block discarded – undo
129 132
 			return $response;
130 133
 		}
131 134
 
135
+		/**
136
+		 * @param string $type
137
+		 * @param string $id
138
+		 */
132 139
 		public function fetch_stream($type, $id, $page = 1, $offset = 0) {
133 140
 			$supports = array("album", "channel", "user");
134 141
 
Please login to merge, or discard this patch.