Passed
Branch feature/optimize (fa59d7)
by Fu
03:14
created
Http/Middleware/RefreshToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function handle($request, Closure $next, $guard)
24 24
     {
25
-        app()->singleton('tymon.jwt.auth', function () use ($guard) {
25
+        app()->singleton('tymon.jwt.auth', function() use ($guard) {
26 26
             /** @var GuardContract $auth */
27 27
             $auth = auth($guard);
28 28
             return new JWTAuth(app('tymon.jwt.manager'), new Illuminate($auth), app('tymon.jwt.parser'));
Please login to merge, or discard this patch.
Http/Middleware/Authenticate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function handle($request, Closure $next, $guard)
24 24
     {
25
-        app()->singleton('tymon.jwt.auth', function () use ($guard) {
25
+        app()->singleton('tymon.jwt.auth', function() use ($guard) {
26 26
             /** @var GuardContract $auth */
27 27
             $auth = auth($guard);
28 28
             return new JWTAuth(app('tymon.jwt.manager'), new Illuminate($auth), app('tymon.jwt.parser'));
Please login to merge, or discard this patch.
Http/Middleware/Check.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function handle($request, Closure $next, $guard)
24 24
     {
25
-        app()->singleton('tymon.jwt.auth', function () use ($guard) {
25
+        app()->singleton('tymon.jwt.auth', function() use ($guard) {
26 26
             /** @var GuardContract $auth */
27 27
             $auth = auth($guard);
28 28
             return new JWTAuth(app('tymon.jwt.manager'), new Illuminate($auth), app('tymon.jwt.parser'));
Please login to merge, or discard this patch.
Http/Middleware/AuthenticateAndRenew.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function handle($request, Closure $next, $guard)
24 24
     {
25
-        app()->singleton('tymon.jwt.auth', function () use ($guard) {
25
+        app()->singleton('tymon.jwt.auth', function() use ($guard) {
26 26
             /** @var GuardContract $auth */
27 27
             $auth = auth($guard);
28 28
             return new JWTAuth(app('tymon.jwt.manager'), new Illuminate($auth), app('tymon.jwt.parser'));
Please login to merge, or discard this patch.