Completed
Push — master ( 49c4da...13ab8c )
by recca
06:41
created
src/Http/Controllers/LaravelTracyController.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
      * @param \Recca0120\LaravelTracy\DebuggerManager $debuggerManager
16 16
      * @param \Illuminate\Http\Request $request
17 17
      * @param \Illuminate\Contracts\Routing\ResponseFactory $responseFactory
18
-     * @param string $type
19 18
      * @return \Illuminate\Http\Response
20 19
      */
21 20
     public function bar(DebuggerManager $debuggerManager, Request $request, ResponseFactory $responseFactory)
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\LaravelTracy\Http\Controllers;
4 4
 
5
+use Illuminate\Contracts\Routing\ResponseFactory;
5 6
 use Illuminate\Http\Request;
6 7
 use Illuminate\Routing\Controller;
7 8
 use Recca0120\LaravelTracy\DebuggerManager;
8
-use Illuminate\Contracts\Routing\ResponseFactory;
9 9
 
10 10
 class LaravelTracyController extends Controller
11 11
 {
Please login to merge, or discard this patch.
src/LaravelTracyServiceProvider.php 2 patches
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,18 +2,18 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\LaravelTracy;
4 4
 
5
-use Tracy\Bar;
6
-use Tracy\Debugger;
7
-use Tracy\BlueScreen;
8
-use Illuminate\Support\Arr;
9
-use Illuminate\Routing\Router;
5
+use Illuminate\Contracts\Debug\ExceptionHandler;
10 6
 use Illuminate\Contracts\Http\Kernel;
11
-use Illuminate\Support\ServiceProvider;
12 7
 use Illuminate\Contracts\View\Factory as View;
8
+use Illuminate\Routing\Router;
9
+use Illuminate\Support\Arr;
10
+use Illuminate\Support\ServiceProvider;
13 11
 use Recca0120\LaravelTracy\Exceptions\Handler;
14
-use Recca0120\Terminal\TerminalServiceProvider;
15
-use Illuminate\Contracts\Debug\ExceptionHandler;
16 12
 use Recca0120\LaravelTracy\Middleware\RenderBar;
13
+use Recca0120\Terminal\TerminalServiceProvider;
14
+use Tracy\Bar;
15
+use Tracy\BlueScreen;
16
+use Tracy\Debugger;
17 17
 
18 18
 class LaravelTracyServiceProvider extends ServiceProvider
19 19
 {
Please login to merge, or discard this patch.
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,6 @@
 block discarded – undo
34 34
     /**
35 35
      * boot.
36 36
      *
37
-     * @param DebuggerManager $debuggerManager
38 37
      * @param \Illuminate\Contracts\Http\Kernel $kernel
39 38
      * @param \Illuminate\Contracts\View\Factory $view
40 39
      * @param \Illuminate\Routing\Router $router
Please login to merge, or discard this patch.
src/Middleware/RenderBar.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\LaravelTracy\Middleware;
4 4
 
5
-use Illuminate\Http\Request;
6 5
 use Illuminate\Contracts\Events\Dispatcher;
6
+use Illuminate\Http\Request;
7 7
 use Recca0120\LaravelTracy\DebuggerManager;
8
-use Symfony\Component\HttpFoundation\Response;
9 8
 use Recca0120\LaravelTracy\Events\BeforeBarRender;
9
+use Symfony\Component\HttpFoundation\BinaryFileResponse;
10 10
 use Symfony\Component\HttpFoundation\RedirectResponse;
11
+use Symfony\Component\HttpFoundation\Response;
11 12
 use Symfony\Component\HttpFoundation\StreamedResponse;
12
-use Symfony\Component\HttpFoundation\BinaryFileResponse;
13 13
 
14 14
 class RenderBar
15 15
 {
Please login to merge, or discard this patch.
src/Exceptions/Handler.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 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\DebuggerManager;
9
-use Illuminate\Contracts\Debug\ExceptionHandler;
10 10
 use Symfony\Component\HttpFoundation\JsonResponse;
11 11
 use Symfony\Component\HttpFoundation\RedirectResponse;
12 12
 
Please login to merge, or discard this patch.
src/DebuggerManager.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
      *
263 263
      * @param string $content
264 264
      * @param string $method
265
-     * @param array $appendTo
265
+     * @param array $appendTags
266 266
      * @return string
267 267
      */
268 268
     protected function render($content, $method, $appendTags = ['body'])
Please login to merge, or discard this patch.
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\LaravelTracy;
4 4
 
5
+use ErrorException;
5 6
 use Exception;
7
+use Illuminate\Contracts\Routing\UrlGenerator;
8
+use Illuminate\Support\Arr;
6 9
 use Tracy\Bar;
7
-use Tracy\Helpers;
8
-use ErrorException;
9
-use Tracy\Debugger;
10 10
 use Tracy\BlueScreen;
11
-use Illuminate\Support\Arr;
12
-use Illuminate\Contracts\Routing\UrlGenerator;
11
+use Tracy\Debugger;
12
+use Tracy\Helpers;
13 13
 
14 14
 class DebuggerManager
15 15
 {
Please login to merge, or discard this patch.