Completed
Branch master (ce4e2b)
by Sheldon
12:21
created
app/Validators/AdminRoleValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
     protected $rules = [
11 11
         ValidatorInterface::RULE_CREATE => [],
12 12
         ValidatorInterface::RULE_UPDATE => [],
13
-   ];
13
+    ];
14 14
 }
Please login to merge, or discard this patch.
app/Validators/AdminOperationLogValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
     protected $rules = [
11 11
         ValidatorInterface::RULE_CREATE => [],
12 12
         ValidatorInterface::RULE_UPDATE => [],
13
-   ];
13
+    ];
14 14
 }
Please login to merge, or discard this patch.
app/Validators/ProductModelValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,5 +18,5 @@
 block discarded – undo
18 18
         'model_name'	=> '	required|max:150',
19 19
         'code'	      => '	required|max:50',
20 20
     ],
21
-   ];
21
+    ];
22 22
 }
Please login to merge, or discard this patch.
app/Validators/UserValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
     protected $rules = [
11 11
         ValidatorInterface::RULE_CREATE => [],
12 12
         ValidatorInterface::RULE_UPDATE => [],
13
-   ];
13
+    ];
14 14
 }
Please login to merge, or discard this patch.
app/Validators/SocialiteUserValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,5 +18,5 @@
 block discarded – undo
18 18
         'provider'	        => 'required',
19 19
         'provider_user_id'	=> 'required',
20 20
     ],
21
-   ];
21
+    ];
22 22
 }
Please login to merge, or discard this patch.
app/Validators/AdminMenuValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
     protected $rules = [
11 11
         ValidatorInterface::RULE_CREATE => [],
12 12
         ValidatorInterface::RULE_UPDATE => [],
13
-   ];
13
+    ];
14 14
 }
Please login to merge, or discard this patch.
app/Validators/AdminPermissionValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
     protected $rules = [
11 11
         ValidatorInterface::RULE_CREATE => [],
12 12
         ValidatorInterface::RULE_UPDATE => [],
13
-   ];
13
+    ];
14 14
 }
Please login to merge, or discard this patch.
app/Providers/ApiServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@
 block discarded – undo
18 18
     public function boot()
19 19
     {
20 20
         $handler = app('Dingo\Api\Exception\Handler');
21
-        $handler->register(function (AuthenticationException $exception) {
21
+        $handler->register(function(AuthenticationException $exception) {
22 22
             throw new UnauthorizedHttpException(null, $exception->getMessage());
23 23
         });
24
-        $handler->register(function (AuthorizationException $exception) {
24
+        $handler->register(function(AuthorizationException $exception) {
25 25
             throw new AccessDeniedHttpException($exception->getMessage());
26 26
         });
27 27
     }
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@
 block discarded – undo
52 52
     protected function mapWebRoutes()
53 53
     {
54 54
         Route::middleware('web')
55
-             ->namespace($this->namespace)
56
-             ->group(base_path('routes/web.php'));
55
+                ->namespace($this->namespace)
56
+                ->group(base_path('routes/web.php'));
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.