Completed
Push — master ( c2a60e...53c26d )
by Song
03:28 queued 54s
created
src/Controllers/ModelForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      *
34 34
      * @param int $id
35 35
      *
36
-     * @return \Illuminate\Http\Response
36
+     * @return \Illuminate\Http\JsonResponse
37 37
      */
38 38
     public function destroy($id)
39 39
     {
Please login to merge, or discard this patch.
src/Auth/Database/Permission.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
         $method = $this->http_method;
67 67
 
68
-        $matches = array_map(function ($path) use ($method) {
68
+        $matches = array_map(function($path) use ($method) {
69 69
             $path = trim(config('admin.route.prefix'), '/').trim($path, '/');
70 70
 
71 71
             if (Str::contains($path, ':')) {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             return false;
100 100
         }
101 101
 
102
-        $method = collect($match['method'])->filter()->map(function ($method) {
102
+        $method = collect($match['method'])->filter()->map(function($method) {
103 103
             return strtoupper($method);
104 104
         });
105 105
 
Please login to merge, or discard this patch.
src/Controllers/Dashboard.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,20 +20,20 @@
 block discarded – undo
20 20
     public static function environment()
21 21
     {
22 22
         $envs = [
23
-            ['name' => 'PHP version',       'value' => 'PHP/'.PHP_VERSION],
24
-            ['name' => 'Laravel version',   'value' => app()->version()],
25
-            ['name' => 'CGI',               'value' => php_sapi_name()],
26
-            ['name' => 'Uname',             'value' => php_uname()],
27
-            ['name' => 'Server',            'value' => $_SERVER['SERVER_SOFTWARE']],
23
+            ['name' => 'PHP version', 'value' => 'PHP/'.PHP_VERSION],
24
+            ['name' => 'Laravel version', 'value' => app()->version()],
25
+            ['name' => 'CGI', 'value' => php_sapi_name()],
26
+            ['name' => 'Uname', 'value' => php_uname()],
27
+            ['name' => 'Server', 'value' => $_SERVER['SERVER_SOFTWARE']],
28 28
 
29
-            ['name' => 'Cache driver',      'value' => config('cache.default')],
30
-            ['name' => 'Session driver',    'value' => config('session.driver')],
31
-            ['name' => 'Queue driver',      'value' => config('queue.default')],
29
+            ['name' => 'Cache driver', 'value' => config('cache.default')],
30
+            ['name' => 'Session driver', 'value' => config('session.driver')],
31
+            ['name' => 'Queue driver', 'value' => config('queue.default')],
32 32
 
33
-            ['name' => 'Timezone',          'value' => config('app.timezone')],
34
-            ['name' => 'Locale',            'value' => config('app.locale')],
35
-            ['name' => 'Env',               'value' => config('app.env')],
36
-            ['name' => 'URL',               'value' => config('app.url')],
33
+            ['name' => 'Timezone', 'value' => config('app.timezone')],
34
+            ['name' => 'Locale', 'value' => config('app.locale')],
35
+            ['name' => 'Env', 'value' => config('app.env')],
36
+            ['name' => 'URL', 'value' => config('app.url')],
37 37
         ];
38 38
 
39 39
         return view('admin::dashboard.environment', compact('envs'));
Please login to merge, or discard this patch.
src/Controllers/PermissionController.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      */
22 22
     public function index()
23 23
     {
24
-        return Admin::content(function (Content $content) {
24
+        return Admin::content(function(Content $content) {
25 25
             $content->header(trans('admin.permissions'));
26 26
             $content->description(trans('admin.list'));
27 27
             $content->body($this->grid()->render());
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function edit($id)
39 39
     {
40
-        return Admin::content(function (Content $content) use ($id) {
40
+        return Admin::content(function(Content $content) use ($id) {
41 41
             $content->header(trans('admin.permissions'));
42 42
             $content->description(trans('admin.edit'));
43 43
             $content->body($this->form()->edit($id));
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function create()
53 53
     {
54
-        return Admin::content(function (Content $content) {
54
+        return Admin::content(function(Content $content) {
55 55
             $content->header(trans('admin.permissions'));
56 56
             $content->description(trans('admin.create'));
57 57
             $content->body($this->form());
@@ -65,13 +65,13 @@  discard block
 block discarded – undo
65 65
      */
66 66
     protected function grid()
67 67
     {
68
-        return Admin::grid(Permission::class, function (Grid $grid) {
68
+        return Admin::grid(Permission::class, function(Grid $grid) {
69 69
             $grid->id('ID')->sortable();
70 70
             $grid->slug(trans('admin.slug'));
71 71
             $grid->name(trans('admin.name'));
72 72
 
73
-            $grid->http_path(trans('admin.route'))->display(function ($path) {
74
-                return collect(explode("\r\n", $path))->map(function ($path) {
73
+            $grid->http_path(trans('admin.route'))->display(function($path) {
74
+                return collect(explode("\r\n", $path))->map(function($path) {
75 75
                     $method = $this->http_method ?: ['ANY'];
76 76
 
77 77
                     if (Str::contains($path, ':')) {
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
                         $method = explode(',', $method);
80 80
                     }
81 81
 
82
-                    $method = collect($method)->map(function ($name) {
82
+                    $method = collect($method)->map(function($name) {
83 83
                         return strtoupper($name);
84
-                    })->map(function ($name) {
84
+                    })->map(function($name) {
85 85
                         return "<span class='label label-primary'>{$name}</span>";
86 86
                     })->implode('&nbsp;');
87 87
 
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
             $grid->created_at(trans('admin.created_at'));
95 95
             $grid->updated_at(trans('admin.updated_at'));
96 96
 
97
-            $grid->tools(function (Grid\Tools $tools) {
98
-                $tools->batch(function (Grid\Tools\BatchActions $actions) {
97
+            $grid->tools(function(Grid\Tools $tools) {
98
+                $tools->batch(function(Grid\Tools\BatchActions $actions) {
99 99
                     $actions->disableDelete();
100 100
                 });
101 101
             });
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function form()
111 111
     {
112
-        return Admin::form(Permission::class, function (Form $form) {
112
+        return Admin::form(Permission::class, function(Form $form) {
113 113
             $form->display('id', 'ID');
114 114
 
115 115
             $form->text('slug', trans('admin.slug'))->rules('required');
Please login to merge, or discard this patch.
src/Extension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     protected static function routes($callback)
25 25
     {
26 26
         /* @var \Illuminate\Routing\Router $router */
27
-        Route::group(['prefix' => config('admin.route.prefix')], function ($router) use ($callback) {
27
+        Route::group(['prefix' => config('admin.route.prefix')], function($router) use ($callback) {
28 28
             $attributes = array_merge([
29 29
                 'middleware' => config('admin.route.middleware'),
30 30
             ], static::config('route', []));
Please login to merge, or discard this patch.
src/Form/Builder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
      */
250 250
     public function field($name)
251 251
     {
252
-        return $this->fields()->first(function (Field $field) use ($name) {
252
+        return $this->fields()->first(function(Field $field) use ($name) {
253 253
             return $field->column() == $name;
254 254
         });
255 255
     }
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
             $this->form->model()->getUpdatedAtColumn(),
491 491
         ];
492 492
 
493
-        $this->fields = $this->fields()->reject(function (Field $field) use ($reservedColumns) {
493
+        $this->fields = $this->fields()->reject(function(Field $field) use ($reservedColumns) {
494 494
             return in_array($field->column(), $reservedColumns);
495 495
         });
496 496
     }
Please login to merge, or discard this patch.
src/Grid/Exporters/CsvExporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     protected function sanitize(array $row)
52 52
     {
53
-        return collect($row)->reject(function ($val) {
53
+        return collect($row)->reject(function($val) {
54 54
             return is_array($val) && !Arr::isAssoc($val);
55 55
         })->toArray();
56 56
     }
Please login to merge, or discard this patch.
src/Grid/Column.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
         $grid = $this->grid;
410 410
         $column = $this;
411 411
 
412
-        $this->display(function ($value) use ($grid, $column, $class) {
412
+        $this->display(function($value) use ($grid, $column, $class) {
413 413
             $definition = new $class($value, $grid, $column, $this);
414 414
 
415 415
             return $definition->display();
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
     protected function htmlEntityEncode($item)
427 427
     {
428 428
         if (is_array($item)) {
429
-            array_walk_recursive($item, function (&$value) {
429
+            array_walk_recursive($item, function(&$value) {
430 430
                 $value = htmlentities($value);
431 431
             });
432 432
         } else {
@@ -506,7 +506,7 @@  discard block
 block discarded – undo
506 506
      */
507 507
     protected function callSupportDisplayer($abstract, $arguments)
508 508
     {
509
-        return $this->display(function ($value) use ($abstract, $arguments) {
509
+        return $this->display(function($value) use ($abstract, $arguments) {
510 510
             if (is_array($value) || $value instanceof Arrayable) {
511 511
                 return call_user_func_array([collect($value), $abstract], $arguments);
512 512
             }
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
     protected function callBuiltinDisplayer($abstract, $arguments)
531 531
     {
532 532
         if ($abstract instanceof Closure) {
533
-            return $this->display(function ($value) use ($abstract, $arguments) {
533
+            return $this->display(function($value) use ($abstract, $arguments) {
534 534
                 return call_user_func_array($abstract->bindTo($this), array_merge([$value], $arguments));
535 535
             });
536 536
         }
@@ -539,7 +539,7 @@  discard block
 block discarded – undo
539 539
             $grid = $this->grid;
540 540
             $column = $this;
541 541
 
542
-            return $this->display(function ($value) use ($abstract, $grid, $column, $arguments) {
542
+            return $this->display(function($value) use ($abstract, $grid, $column, $arguments) {
543 543
                 $displayer = new $abstract($value, $grid, $column, $this);
544 544
 
545 545
                 return call_user_func_array([$displayer, 'display'], $arguments);
Please login to merge, or discard this patch.