Completed
Pull Request — master (#39)
by
unknown
02:05
created
src/Exceptions/Handler.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 namespace Recca0120\LaravelTracy\Exceptions;
4 4
 
5 5
 use Exception;
6
-use Illuminate\Http\Response;
6
+use Illuminate\Contracts\Debug\ExceptionHandler;
7 7
 use Illuminate\Contracts\View\View;
8
+use Illuminate\Http\Response;
8 9
 use Recca0120\LaravelTracy\Contracts\IHandler;
9 10
 use Recca0120\LaravelTracy\DebuggerManager;
10
-use Illuminate\Contracts\Debug\ExceptionHandler;
11 11
 use Symfony\Component\HttpFoundation\JsonResponse;
12 12
 use Symfony\Component\HttpFoundation\RedirectResponse;
13 13
 
Please login to merge, or discard this patch.
src/Exceptions/LoggerHandler.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 namespace Recca0120\LaravelTracy\Exceptions;
4 4
 
5 5
 use Exception;
6
-use Illuminate\Http\Response;
6
+use Illuminate\Contracts\Debug\ExceptionHandler;
7 7
 use Illuminate\Contracts\View\View;
8
+use Illuminate\Http\Response;
8 9
 use Recca0120\LaravelTracy\Contracts\IHandler;
9 10
 use Recca0120\LaravelTracy\DebuggerManager;
10
-use Illuminate\Contracts\Debug\ExceptionHandler;
11 11
 use Symfony\Component\HttpFoundation\JsonResponse;
12 12
 use Symfony\Component\HttpFoundation\RedirectResponse;
13 13
 
Please login to merge, or discard this patch.
src/LaravelTracyServiceProvider.php 1 patch
Unused Use Statements   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,19 +2,19 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\LaravelTracy;
4 4
 
5
-use Recca0120\LaravelTracy\Exceptions\LoggerHandler;
6
-use Tracy\Bar;
7
-use Tracy\Debugger;
8
-use Tracy\BlueScreen;
9
-use Illuminate\Support\Arr;
10
-use Illuminate\Routing\Router;
5
+use Illuminate\Contracts\Debug\ExceptionHandler;
11 6
 use Illuminate\Contracts\Http\Kernel;
12
-use Illuminate\Support\ServiceProvider;
13 7
 use Illuminate\Contracts\View\Factory as View;
8
+use Illuminate\Routing\Router;
9
+use Illuminate\Support\Arr;
10
+use Illuminate\Support\ServiceProvider;
14 11
 use Recca0120\LaravelTracy\Exceptions\Handler;
15
-use Recca0120\Terminal\TerminalServiceProvider;
16
-use Illuminate\Contracts\Debug\ExceptionHandler;
12
+use Recca0120\LaravelTracy\Exceptions\LoggerHandler;
17 13
 use Recca0120\LaravelTracy\Middleware\RenderBar;
14
+use Recca0120\Terminal\TerminalServiceProvider;
15
+use Tracy\Bar;
16
+use Tracy\BlueScreen;
17
+use Tracy\Debugger;
18 18
 
19 19
 class LaravelTracyServiceProvider extends ServiceProvider
20 20
 {
Please login to merge, or discard this patch.