Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
KABBOUCHI authored and StyleCIBot committed Nov 15, 2019
1 parent d7e6e4d commit 329496f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config/nova-logs-tool.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

return [
'perPage' => env('NOVA_LOGS_PER_PAGE', 6),
'regexForFiles' => env('NOVA_LOGS_REGEX_FOR_FILES', '/^laravel/')
'regexForFiles' => env('NOVA_LOGS_REGEX_FOR_FILES', '/^laravel/'),
];
6 changes: 3 additions & 3 deletions src/Http/Controllers/LogsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace KABBOUCHI\LogsTool\Http\Controllers;

use KABBOUCHI\Ward\Ward;
use Illuminate\Http\Request;
use KABBOUCHI\LogsTool\LogsTool;
use Illuminate\Routing\Controller;
use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Routing\Controller;
use KABBOUCHI\LogsTool\LogsTool;
use KABBOUCHI\Ward\Ward;

class LogsController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/LogsTool.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace KABBOUCHI\LogsTool;

use Laravel\Nova\Nova;
use Illuminate\Http\Request;
use Laravel\Nova\Nova;
use Laravel\Nova\Tool as BaseTool;

class LogsTool extends BaseTool
Expand Down
4 changes: 2 additions & 2 deletions src/LogsToolServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace KABBOUCHI\LogsTool;

use Laravel\Nova\Nova;
use Laravel\Nova\Events\ServingNova;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\ServiceProvider;
use KABBOUCHI\LogsTool\Http\Middleware\Authorize;
use Laravel\Nova\Events\ServingNova;
use Laravel\Nova\Nova;

class LogsToolServiceProvider extends ServiceProvider
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace KABBOUCHI\LogsTool\Tests;

use Illuminate\Support\Facades\Route;
use Orchestra\Testbench\TestCase as Orchestra;
use KABBOUCHI\LogsTool\LogsToolServiceProvider;
use Orchestra\Testbench\TestCase as Orchestra;

abstract class TestCase extends Orchestra
{
Expand Down

0 comments on commit 329496f

Please sign in to comment.