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/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.