Skip to content
This repository was archived by the owner on Feb 18, 2023. It is now read-only.

Commit 1d74246

Browse files
author
Jose Fonseca
committed
CS fixes
1 parent 97858b0 commit 1d74246

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

app/Exceptions/Handler.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace App\Exceptions;
44

5-
use Illuminate\Auth\AuthenticationException;
65
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
76
use Throwable;
87

app/Http/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Kernel extends HttpKernel
3737
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
3838
\App\Http\Middleware\VerifyCsrfToken::class,
3939
\Illuminate\Routing\Middleware\SubstituteBindings::class,
40-
]
40+
],
4141
];
4242

4343
/**

app/Http/Middleware/Authenticate.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@
66

77
class Authenticate extends Middleware
88
{
9-
109
}

app/Http/Middleware/PreventRequestsDuringMaintenance.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ class PreventRequestsDuringMaintenance extends Middleware
1414
protected $except = [
1515
//
1616
];
17-
}
17+
18+
}

app/Http/Middleware/RedirectIfAuthenticated.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
/**
1010
* @codeCoverageIgnore
1111
* Class RedirectIfAuthenticated
12-
* @package App\Http\Middleware
1312
*/
1413
class RedirectIfAuthenticated
1514
{
@@ -33,4 +32,5 @@ public function handle($request, Closure $next, ...$guards)
3332

3433
return $next($request);
3534
}
36-
}
35+
36+
}

app/Providers/ErrorHandlerServiceProvider.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Dingo\Api\Exception\ResourceException;
77
use Dingo\Api\Routing\Helpers;
88
use Illuminate\Auth\AuthenticationException;
9-
use Illuminate\Database\Eloquent\ModelNotFoundException;
109
use Illuminate\Support\ServiceProvider;
1110
use Illuminate\Validation\ValidationException;
1211

0 commit comments

Comments
 (0)