Completed
Push — master ( e6bfbd...af89b1 )
by recca
03:06
created
src/Connector.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      *
50 50
      * @param array $data
51 51
      *
52
-     * @return mixed
52
+     * @return StreamedResponse
53 53
      */
54 54
     protected function output(array $data)
55 55
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\Elfinder;
4 4
 
5
-use elFinder;
6
-use elFinderConnector;
7 5
 use Symfony\Component\HttpFoundation\StreamedResponse;
6
+use elFinderConnector;
8 7
 
9 8
 class Connector extends elFinderConnector
10 9
 {
Please login to merge, or discard this patch.
src/ElfinderServiceProvider.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\Elfinder;
4 4
 
5
-use elFinder;
6
-use Illuminate\Support\Arr;
7 5
 use Illuminate\Routing\Router;
6
+use Illuminate\Support\Arr;
8 7
 use Illuminate\Support\ServiceProvider;
8
+use elFinder;
9 9
 
10 10
 class ElfinderServiceProvider extends ServiceProvider
11 11
 {
Please login to merge, or discard this patch.
src/Http/Controllers/ElfinderController.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,6 @@
 block discarded – undo
46 46
     /**
47 47
      * connector.
48 48
      *
49
-     * @param \Recca0120\Elfinder\Connector $elfinder
50 49
      * @return mixed
51 50
      */
52 51
     public function connector(Connector $connector)
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\Elfinder\Http\Controllers;
4 4
 
5
+use Illuminate\Contracts\Routing\ResponseFactory;
6
+use Illuminate\Filesystem\Filesystem;
5 7
 use Illuminate\Http\Request;
6
-use Recca0120\Elfinder\Connector;
7 8
 use Illuminate\Routing\Controller;
8
-use Illuminate\Filesystem\Filesystem;
9
-use Illuminate\Contracts\Routing\ResponseFactory;
9
+use Recca0120\Elfinder\Connector;
10 10
 
11 11
 class ElfinderController extends Controller
12 12
 {
Please login to merge, or discard this patch.
src/Options.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\Elfinder;
4 4
 
5
-use Closure;
6 5
 use ArrayObject;
7
-use Illuminate\Support\Arr;
8
-use Illuminate\Http\Request;
9
-use Illuminate\Filesystem\Filesystem;
6
+use Closure;
10 7
 use Illuminate\Contracts\Routing\UrlGenerator;
8
+use Illuminate\Filesystem\Filesystem;
9
+use Illuminate\Http\Request;
10
+use Illuminate\Support\Arr;
11 11
 
12 12
 class Options extends ArrayObject
13 13
 {
Please login to merge, or discard this patch.