Skip to content

Commit

Permalink
styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
recca0120 committed Mar 10, 2020
1 parent 3a74ba5 commit a2f6ebe
Show file tree
Hide file tree
Showing 25 changed files with 50 additions and 50 deletions.
10 changes: 5 additions & 5 deletions src/BarManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace Recca0120\LaravelTracy;

use Tracy\Bar;
use Tracy\Debugger;
use Tracy\IBarPanel;
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Http\Request;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use Illuminate\Http\Request;
use Illuminate\Contracts\Foundation\Application;
use Recca0120\LaravelTracy\Contracts\IAjaxPanel;
use Tracy\Bar;
use Tracy\Debugger;
use Tracy\IBarPanel;

class BarManager
{
Expand Down
10 changes: 5 additions & 5 deletions src/DebuggerManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace Recca0120\LaravelTracy;

use ErrorException;
use Exception;
use Illuminate\Contracts\Routing\UrlGenerator;
use Illuminate\Support\Arr;
use Tracy\Bar;
use Tracy\Helpers;
use ErrorException;
use Tracy\Debugger;
use Tracy\BlueScreen;
use Illuminate\Support\Arr;
use Illuminate\Contracts\Routing\UrlGenerator;
use Tracy\Debugger;
use Tracy\Helpers;

class DebuggerManager
{
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Controllers/LaravelTracyController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Http\Controllers;

use Illuminate\Contracts\Routing\ResponseFactory;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Recca0120\LaravelTracy\DebuggerManager;
use Illuminate\Contracts\Routing\ResponseFactory;

class LaravelTracyController extends Controller
{
Expand Down
16 changes: 8 additions & 8 deletions src/LaravelTracyServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

namespace Recca0120\LaravelTracy;

use Tracy\Bar;
use Tracy\Debugger;
use Tracy\BlueScreen;
use Illuminate\Support\Arr;
use Illuminate\Routing\Router;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Support\ServiceProvider;
use Illuminate\Contracts\View\Factory as View;
use Illuminate\Routing\Router;
use Illuminate\Support\Arr;
use Illuminate\Support\ServiceProvider;
use Recca0120\LaravelTracy\Exceptions\Handler;
use Recca0120\Terminal\TerminalServiceProvider;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Recca0120\LaravelTracy\Middleware\RenderBar;
use Recca0120\Terminal\TerminalServiceProvider;
use Tracy\Bar;
use Tracy\BlueScreen;
use Tracy\Debugger;

class LaravelTracyServiceProvider extends ServiceProvider
{
Expand Down
6 changes: 3 additions & 3 deletions src/Middleware/RenderBar.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace Recca0120\LaravelTracy\Middleware;

use Illuminate\Http\Request;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Http\Request;
use Recca0120\LaravelTracy\DebuggerManager;
use Symfony\Component\HttpFoundation\Response;
use Recca0120\LaravelTracy\Events\BeforeBarRender;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\StreamedResponse;
use Symfony\Component\HttpFoundation\BinaryFileResponse;

class RenderBar
{
Expand Down
6 changes: 3 additions & 3 deletions src/Panels/AbstractPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace Recca0120\LaravelTracy\Panels;

use Tracy\Helpers;
use Tracy\IBarPanel;
use Recca0120\LaravelTracy\Template;
use Illuminate\Contracts\Foundation\Application;
use Recca0120\LaravelTracy\Contracts\ILaravelPanel;
use Recca0120\LaravelTracy\Template;
use Tracy\Helpers;
use Tracy\IBarPanel;

abstract class AbstractPanel implements IBarPanel, ILaravelPanel
{
Expand Down
2 changes: 1 addition & 1 deletion src/Panels/DatabasePanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Recca0120\LaravelTracy\Panels;

use PDO;
use Exception;
use PDO;
use Recca0120\LaravelTracy\Contracts\IAjaxPanel;

class DatabasePanel extends AbstractSubscriablePanel implements IAjaxPanel
Expand Down
2 changes: 1 addition & 1 deletion src/Panels/EventPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Recca0120\LaravelTracy\Panels;

use Tracy\Debugger;
use Recca0120\LaravelTracy\Contracts\IAjaxPanel;
use Tracy\Debugger;

class EventPanel extends AbstractSubscriablePanel implements IAjaxPanel
{
Expand Down
2 changes: 1 addition & 1 deletion src/Panels/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Recca0120\LaravelTracy\Panels;

use PDO;
use DateTime;
use PDO;

class Helper
{
Expand Down
2 changes: 1 addition & 1 deletion tests/BarManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Tests;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\BarManager;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class BarManagerTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/DebuggerManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
namespace Recca0120\LaravelTracy\Tests;

use Exception;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use Tracy\Debugger;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\DebuggerManager;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Tracy\Debugger;

class DebuggerManagerTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Exceptions/HandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
namespace Recca0120\LaravelTracy\Tests\Exceptions;

use Exception;
use Mockery as m;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Exceptions\Handler;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class HandlerTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Http/Controllers/LaravelTracyControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Recca0120\LaravelTracy\Tests\Http\Controllers;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Recca0120\LaravelTracy\Http\Controllers\LaravelTracyController;

class LaravelTracyControllerTest extends TestCase
Expand Down
4 changes: 2 additions & 2 deletions tests/LaravelTracyServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Tests;

use Mockery as m;
use PHPUnit\Framework\TestCase;
use Illuminate\Container\Container;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\LaravelTracyServiceProvider;

class LaravelTracyServiceProviderTest extends TestCase
Expand Down
4 changes: 2 additions & 2 deletions tests/Middleware/RenderBarTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace Recca0120\LaravelTracy\Tests\Middleware;

use Mockery as m;
use Illuminate\Http\Request;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Middleware\RenderBar;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class RenderBarTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/AuthPanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Tests\Panels;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\AuthPanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class AuthPanelTest extends TestCase
{
Expand Down
6 changes: 3 additions & 3 deletions tests/Panels/DatabasePanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace Recca0120\LaravelTracy\Tests\Panels;

use PDO;
use stdClass;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PDO;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\DatabasePanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use stdClass;

class DatabasePanelTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/EventPanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Tests\Panels;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\EventPanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class EventPanelTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/HelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
namespace Recca0120\LaravelTracy\Tests\Panels;

use DateTime;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\Helper;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class HelperTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/HtmlValidatorPanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace Recca0120\LaravelTracy\Tests\Panels;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Events\BeforeBarRender;
use Recca0120\LaravelTracy\Panels\HtmlValidatorPanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class HtmlValidatorPanelTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/RequestPanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Tests\Panels;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\RequestPanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class RequestPanelTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/RoutingPanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Tests\Panels;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\RoutingPanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class RoutingPanelTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/SessionPanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Tests\Panels;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\SessionPanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class SessionPanelTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/TerminalPanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
namespace Recca0120\LaravelTracy\Tests\Panels;

use Exception;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\TerminalPanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class TerminalPanelTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Panels/ViewPanelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Recca0120\LaravelTracy\Tests\Panels;

use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Recca0120\LaravelTracy\Panels\ViewPanel;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;

class ViewPanelTest extends TestCase
{
Expand Down

0 comments on commit a2f6ebe

Please sign in to comment.