Completed
Push — master ( 8c64c3...017009 )
by Song
02:56
created
resources/views/partials/exception.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 @if($errors->hasBag('exception') && config('app.debug') == true)
2
-    <?php $error = $errors->getBag('exception');?>
2
+    <?php $error = $errors->getBag('exception'); ?>
3 3
     <div class="alert alert-warning alert-dismissable">
4 4
         <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
5 5
         <h4>
Please login to merge, or discard this patch.
src/Middleware/Permission.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
             return $next($request);
34 34
         }
35 35
 
36
-        if (!Admin::user()->allPermissions()->first(function ($permission) use ($request) {
36
+        if (!Admin::user()->allPermissions()->first(function($permission) use ($request) {
37 37
             return $permission->shouldPassThrough($request);
38 38
         })) {
39 39
             Checker::error();
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function checkRoutePermission(Request $request)
54 54
     {
55
-        if (!$middleware = collect($request->route()->middleware())->first(function ($middleware) {
55
+        if (!$middleware = collect($request->route()->middleware())->first(function($middleware) {
56 56
             return Str::startsWith($middleware, $this->middlewarePrefix);
57 57
         })) {
58 58
             return false;
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
         return collect($excepts)
89 89
             ->map('admin_base_path')
90
-            ->contains(function ($except) use ($request) {
90
+            ->contains(function($except) use ($request) {
91 91
                 if ($except !== '/') {
92 92
                     $except = trim($except, '/');
93 93
                 }
Please login to merge, or discard this patch.
src/Middleware/Authenticate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         return collect($excepts)
45 45
             ->map('admin_base_path')
46
-            ->contains(function ($except) use ($request) {
46
+            ->contains(function($except) use ($request) {
47 47
                 if ($except !== '/') {
48 48
                     $except = trim($except, '/');
49 49
                 }
Please login to merge, or discard this patch.
src/Grid/Exporters/ExcelExporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
             $eagerLoads = array_keys($this->getQuery()->getEagerLoads());
51 51
 
52
-            $columns = collect($columns)->reject(function ($column) use ($eagerLoads) {
52
+            $columns = collect($columns)->reject(function($column) use ($eagerLoads) {
53 53
                 return Str::contains($column, '.') || in_array($column, $eagerLoads);
54 54
             });
55 55
 
Please login to merge, or discard this patch.
src/Grid/Exporters/CsvExporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,12 +22,12 @@  discard block
 block discarded – undo
22 22
             'Content-Disposition' => "attachment; filename=\"$filename\"",
23 23
         ];
24 24
 
25
-        response()->stream(function () {
25
+        response()->stream(function() {
26 26
             $handle = fopen('php://output', 'w');
27 27
 
28 28
             $titles = [];
29 29
 
30
-            $this->chunk(function ($records) use ($handle, &$titles) {
30
+            $this->chunk(function($records) use ($handle, &$titles) {
31 31
                 if (empty($titles)) {
32 32
                     $titles = $this->getHeaderRowFromRecords($records);
33 33
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     public function getHeaderRowFromRecords(Collection $records): array
56 56
     {
57 57
         $titles = collect(Arr::dot($records->first()->toArray()))->keys()->map(
58
-            function ($key) {
58
+            function($key) {
59 59
                 $key = str_replace('.', ' ', $key);
60 60
 
61 61
                 return Str::ucfirst($key);
Please login to merge, or discard this patch.
src/Grid/Displayers/Table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
             $columns = $titles;
24 24
         }
25 25
 
26
-        $data = array_map(function ($item) use ($columns) {
26
+        $data = array_map(function($item) use ($columns) {
27 27
             $sorted = [];
28 28
 
29 29
             $arr = Arr::only($item, $columns);
Please login to merge, or discard this patch.
src/Grid/Filter/Between.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 
66 66
         $this->value = Arr::get($inputs, $this->column);
67 67
 
68
-        $value = array_filter($this->value, function ($val) {
68
+        $value = array_filter($this->value, function($val) {
69 69
             return $val !== '';
70 70
         });
71 71
 
Please login to merge, or discard this patch.
src/Grid/Filter.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
      */
280 280
     protected function removeFilterByID($id)
281 281
     {
282
-        $this->filters = array_filter($this->filters, function (AbstractFilter $filter) use ($id) {
282
+        $this->filters = array_filter($this->filters, function(AbstractFilter $filter) use ($id) {
283 283
             return $filter->getId() != $id;
284 284
         });
285 285
     }
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     {
294 294
         $inputs = Arr::dot(Input::all());
295 295
 
296
-        $inputs = array_filter($inputs, function ($input) {
296
+        $inputs = array_filter($inputs, function($input) {
297 297
             return $input !== '' && !is_null($input);
298 298
         });
299 299
 
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
             }
322 322
         }
323 323
 
324
-        return tap(array_filter($conditions), function ($conditions) {
324
+        return tap(array_filter($conditions), function($conditions) {
325 325
             if (!empty($conditions)) {
326 326
                 $this->expand();
327 327
             }
@@ -339,9 +339,9 @@  discard block
 block discarded – undo
339 339
             return $inputs;
340 340
         }
341 341
 
342
-        $inputs = collect($inputs)->filter(function ($input, $key) {
342
+        $inputs = collect($inputs)->filter(function($input, $key) {
343 343
             return Str::startsWith($key, "{$this->name}_");
344
-        })->mapWithKeys(function ($val, $key) {
344
+        })->mapWithKeys(function($val, $key) {
345 345
             $key = str_replace("{$this->name}_", '', $key);
346 346
 
347 347
             return [$key => $val];
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
      */
412 412
     public function scope($key, $label = '')
413 413
     {
414
-        return tap(new Scope($key, $label), function (Scope $scope) {
414
+        return tap(new Scope($key, $label), function(Scope $scope) {
415 415
             return $this->scopes->push($scope);
416 416
         });
417 417
     }
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
     {
436 436
         $key = request(Scope::QUERY_NAME);
437 437
 
438
-        return $this->scopes->first(function ($scope) use ($key) {
438
+        return $this->scopes->first(function($scope) use ($key) {
439 439
             return $scope->key == $key;
440 440
         });
441 441
     }
@@ -555,9 +555,9 @@  discard block
 block discarded – undo
555 555
 
556 556
         $columns->push($pageKey);
557 557
 
558
-        $groupNames = collect($this->filters)->filter(function ($filter) {
558
+        $groupNames = collect($this->filters)->filter(function($filter) {
559 559
             return $filter instanceof Group;
560
-        })->map(function (AbstractFilter $filter) {
560
+        })->map(function(AbstractFilter $filter) {
561 561
             return "{$filter->getId()}_group";
562 562
         });
563 563
 
Please login to merge, or discard this patch.
src/Traits/ModelTree.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
     {
198 198
         static::$branchOrder = array_flip(Arr::flatten($order));
199 199
 
200
-        static::$branchOrder = array_map(function ($item) {
200
+        static::$branchOrder = array_map(function($item) {
201 201
             return ++$item;
202 202
         }, static::$branchOrder);
203 203
     }
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
     {
295 295
         parent::boot();
296 296
 
297
-        static::saving(function (Model $branch) {
297
+        static::saving(function(Model $branch) {
298 298
             $parentColumn = $branch->getParentColumn();
299 299
 
300 300
             if (Request::has($parentColumn) && Request::input($parentColumn) == $branch->getKey()) {
Please login to merge, or discard this patch.