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
extensions/albums/class-foogallery-album.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 	/**
65 65
 	 * private function to load a album by the slug.
66 66
 	 * Will be used when loading album shortcodes
67
-	 * @param $slug
67
+	 * @param string $slug
68 68
 	 */
69 69
 	private function load_by_slug( $slug ) {
70 70
 		if ( ! empty( $slug ) ) {
Please login to merge, or discard this patch.
extensions/albums/public/class-foogallery-album-template-loader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
 	 *
138 138
 	 * @param $args array       Arguments passed in from the shortcode
139 139
 	 *
140
-	 * @return bool|FooGallery  The gallery object we want to render
140
+	 * @return FooGalleryAlbum  The gallery object we want to render
141 141
 	 */
142 142
 	function find_album( $args ) {
143 143
 
Please login to merge, or discard this patch.
extensions/nextgen-importer/class-nextgen-helper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -485,6 +485,9 @@
 block discarded – undo
485 485
 			return new FooGallery_NextGen_Import_Progress_Album();
486 486
 		}
487 487
 
488
+		/**
489
+		 * @param string $foogallery_album_name
490
+		 */
488 491
 		function import_album( $nextgen_gallery_album_id, $foogallery_album_name ) {
489 492
 			$progress = new FooGallery_NextGen_Import_Progress_Album();
490 493
 			$progress->nextgen_album_id = $nextgen_gallery_album_id;
Please login to merge, or discard this patch.
extensions/nextgen-importer/class-nextgen-import-progress.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -23,6 +23,10 @@
 block discarded – undo
23 23
 			$this->is_part_of_current_import = false;
24 24
 		}
25 25
 
26
+		/**
27
+		 * @param integer $nextgen_gallery_id
28
+		 * @param string $foogallery_title
29
+		 */
26 30
 		function init( $nextgen_gallery_id, $foogallery_title ) {
27 31
 			$this->nextgen_gallery_id = $nextgen_gallery_id;
28 32
 			$this->foogallery_title = $foogallery_title;
Please login to merge, or discard this patch.
foogallery.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@
 block discarded – undo
46 46
 
47 47
 		private static $instance;
48 48
 
49
+		/**
50
+		 * @return boolean
51
+		 */
49 52
 		public static function get_instance() {
50 53
 			if ( ! isset(self::$instance) && ! (self::$instance instanceof FooGallery_Plugin) ) {
51 54
 				self::$instance = new FooGallery_Plugin();
Please login to merge, or discard this patch.
includes/admin/class-admin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 		/**
57 57
 		 * @param $links
58 58
 		 *
59
-		 * @return string
59
+		 * @return string[]
60 60
 		 */
61 61
 		function plugin_listing_links( $links ) {
62 62
 			// Add a 'Settings' link to the plugin listing
Please login to merge, or discard this patch.
extensions/albums/admin/class-metaboxes.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -523,7 +523,7 @@
 block discarded – undo
523 523
 
524 524
 		/**
525 525
 		 * Get the fields that we want to edit for a gallery from the album management page
526
-		 * @param $gallery FooGallery
526
+		 * @param FooGallery $gallery FooGallery
527 527
 		 *
528 528
 		 * @return mixed|void
529 529
 		 */
Please login to merge, or discard this patch.
includes/public/class-foogallery-template-loader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
 	 * Helper to get an argument value from an array arguments
194 194
 	 *
195 195
 	 * @param $args    Array    the array of arguments to search
196
-	 * @param $key     string   the key of the argument you are looking for
196
+	 * @param string $key     string   the key of the argument you are looking for
197 197
 	 * @param $default string   a default value if the argument is not found
198 198
 	 *
199 199
 	 * @return string
Please login to merge, or discard this patch.
includes/interface-foogallery-datasource.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,8 @@
 block discarded – undo
9 9
 		/**
10 10
 		 * Sets the FooGallery object we are dealing with
11 11
 		 *
12
-		 * @param $foogallery FooGallery
12
+		 * @param FooGallery $foogallery FooGallery
13
+		 * @return void
13 14
 		 */
14 15
 		public function setGallery( $foogallery );
15 16
 
Please login to merge, or discard this patch.