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/no-link-attribute-outp... ( c60bda...c29bfe )
by
unknown
02:34
created
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.
includes/class-foogallery.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 gallery by the slug.
66 66
 	 * Will be used when loading gallery 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.
includes/class-polylang-compatibility.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 		 *
45 45
 		 * @param $metabox_ids
46 46
 		 *
47
-		 * @return array
47
+		 * @return string[]
48 48
 		 */
49 49
 		function add_pll_metaboxes ($metabox_ids) {
50 50
 			$metabox_ids[] = 'ml_box';
Please login to merge, or discard this patch.
includes/public/class-foogallery-template-loader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 	 *
156 156
 	 * @param $args array       Arguments passed in from the shortcode
157 157
 	 *
158
-	 * @return bool|FooGallery  The gallery object we want to render
158
+	 * @return FooGallery  The gallery object we want to render
159 159
 	 */
160 160
 	function find_gallery( $args ) {
161 161
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 	 * Helper to get an argument value from an array arguments
186 186
 	 *
187 187
 	 * @param $args    Array    the array of arguments to search
188
-	 * @param $key     string   the key of the argument you are looking for
188
+	 * @param string $key     string   the key of the argument you are looking for
189 189
 	 * @param $default string   a default value if the argument is not found
190 190
 	 *
191 191
 	 * @return string
Please login to merge, or discard this patch.
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 gallery by the slug.
66 66
 	 * Will be used when loading gallery 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.