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/gallery-template-clien... ( a5e10a...a6b5cf )
by Brad
02:25
created
extensions/default-templates/default/class-default-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.
default-templates/image-viewer/class-image-viewer-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.
extensions/default-templates/justified/class-justified-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.
extensions/default-templates/masonry/class-masonry-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.
simple-portfolio/class-simple-portfolio-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.
extensions/default-templates/thumbnail/class-thumbnail-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.
includes/class-foogallery.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 	/**
83 83
 	 * private function to load a gallery by the slug.
84 84
 	 * Will be used when loading gallery shortcodes
85
-	 * @param $slug
85
+	 * @param string $slug
86 86
 	 */
87 87
 	private function load_by_slug( $slug ) {
88 88
 		if ( ! empty( $slug ) ) {
@@ -144,6 +144,9 @@  discard block
 block discarded – undo
144 144
 		return $gallery;
145 145
 	}
146 146
 
147
+	/**
148
+	 * @param boolean $default
149
+	 */
147 150
 	function get_meta( $key, $default ) {
148 151
 		if ( ! is_array( $this->settings ) ) {
149 152
 			return $default;
@@ -251,7 +254,7 @@  discard block
 block discarded – undo
251 254
 	/**
252 255
 	 * @deprecated 1.3.0 This is now moved into the datasource implementation
253 256
 	 *
254
-	 * @return int|mixed|string
257
+	 * @return integer
255 258
 	 */
256 259
 	public function find_featured_attachment_id() {
257 260
 		_deprecated_function( __FUNCTION__, '1.3.0' );
Please login to merge, or discard this patch.
includes/admin/class-gallery-metabox-settings-helper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
 		/**
27 27
 		 * FooGallery_Admin_Gallery_MetaBox_Settings_Helper constructor.
28
-		 * @param $gallery FooGallery
28
+		 * @param FooGallery $gallery FooGallery
29 29
 		 */
30 30
 		function __construct($gallery) {
31 31
 			$this->gallery = $gallery;
Please login to merge, or discard this patch.