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 ( 74a577...62d274 )
by Brad
02:30
created
freemius/includes/managers/class-fs-option-manager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 		 * @author Vova Feldman (@svovaf)
66 66
 		 * @since  1.0.3
67 67
 		 *
68
-		 * @param $id
68
+		 * @param string $id
69 69
 		 * @param $load
70 70
 		 *
71 71
 		 * @return FS_Option_Manager
Please login to merge, or discard this patch.
freemius/includes/managers/class-fs-plugin-manager.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@  discard block
 block discarded – undo
42 42
 			return self::$_instances[ $slug ];
43 43
 		}
44 44
 
45
+		/**
46
+		 * @param string $slug
47
+		 */
45 48
 		protected function __construct( $slug ) {
46 49
 			$this->_logger = FS_Logger::get_logger( WP_FS__SLUG . '_' . $slug . '_' . 'plugins', WP_FS__DEBUG_SDK, WP_FS__ECHO_DEBUG_SDK );
47 50
 
@@ -76,7 +79,7 @@  discard block
 block discarded – undo
76 79
 		 * @author Vova Feldman (@svovaf)
77 80
 		 * @since  1.0.6
78 81
 		 *
79
-		 * @param bool|FS_Plugin $plugin
82
+		 * @param FS_Plugin $plugin
80 83
 		 * @param bool           $flush
81 84
 		 *
82 85
 		 * @return bool|\FS_Plugin
Please login to merge, or discard this patch.
freemius/includes/sdk/Freemius.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@
 block discarded – undo
268 268
 		 * @param resource $pCurlHandler
269 269
 		 * @param array    $pCurlOptions
270 270
 		 *
271
-		 * @return mixed
271
+		 * @return string
272 272
 		 */
273 273
 		private static function ExecuteRequest( &$pCurlHandler, &$pCurlOptions ) {
274 274
 			$start = microtime( true );
Please login to merge, or discard this patch.
freemius/includes/sdk/FreemiusBase.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -117,6 +117,9 @@  discard block
 block discarded – undo
117 117
 			       ( ( false === strpos( $pPath, '.' ) ) ? '.' . self::FORMAT : '' ) . $query;
118 118
 		}
119 119
 
120
+		/**
121
+		 * @param string $pCanonizedPath
122
+		 */
120 123
 		abstract function MakeRequest( $pCanonizedPath, $pMethod = 'GET', $pParams = array() );
121 124
 
122 125
 		/**
@@ -149,6 +152,9 @@  discard block
 block discarded – undo
149 152
 			return $result;
150 153
 		}
151 154
 
155
+		/**
156
+		 * @param string $pPath
157
+		 */
152 158
 		public function Api( $pPath, $pMethod = 'GET', $pParams = array() ) {
153 159
 			return $this->_Api( $this->CanonizePath( $pPath ), $pMethod, $pParams );
154 160
 		}
Please login to merge, or discard this patch.