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
Branch master (947fba)
by Rudie
02:17
created
src/FileManager.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -103,6 +103,8 @@  discard block
 block discarded – undo
103 103
 
104 104
 	/**
105 105
 	 *
106
+	 * @param string $filepath
107
+	 * @param integer $index
106 108
 	 */
107 109
 	public function appendFilePathUniqueness($filepath, $index) {
108 110
 		$ext = $this->takeExtension($filepath);
@@ -185,6 +187,7 @@  discard block
 block discarded – undo
185 187
 
186 188
 	/**
187 189
 	 *
190
+	 * @param string $path
188 191
 	 */
189 192
 	public function chmodDir($path) {
190 193
 		return @chmod($path, $this->options['chmod_dirs']);
@@ -192,6 +195,7 @@  discard block
 block discarded – undo
192 195
 
193 196
 	/**
194 197
 	 *
198
+	 * @param string $path
195 199
 	 */
196 200
 	public function prepPublicDir($path) {
197 201
 		return $this->prepDir($this->public_path, $path);
@@ -199,6 +203,7 @@  discard block
 block discarded – undo
199 203
 
200 204
 	/**
201 205
 	 *
206
+	 * @param string $root
202 207
 	 */
203 208
 	public function prepDir($root, $path) {
204 209
 		$root = rtrim($root, '/');
Please login to merge, or discard this patch.
src/FileManagerServiceProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Contracts\Config\Repository as Config;
6 6
 use Illuminate\Contracts\Container\Container;
7
-use Illuminate\Database\ConnectionInterface;
8 7
 use Illuminate\Routing\Router;
9 8
 use Illuminate\Support\ServiceProvider;
10 9
 use rdx\filemanager\FileManager;
Please login to merge, or discard this patch.