@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | protected function minifyCSS() |
79 | 79 | { |
80 | 80 | $css = collect(array_merge(Admin::$css, Admin::$baseCss)) |
81 | - ->unique()->map(function ($css) { |
|
81 | + ->unique()->map(function($css) { |
|
82 | 82 | if (url()->isValidUrl($css)) { |
83 | 83 | $this->assets['css'][] = $css; |
84 | 84 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | protected function minifyJS() |
103 | 103 | { |
104 | 104 | $js = collect(array_merge(Admin::$js, Admin::baseJs())) |
105 | - ->unique()->map(function ($js) { |
|
105 | + ->unique()->map(function($js) { |
|
106 | 106 | if (url()->isValidUrl($js)) { |
107 | 107 | $this->assets['js'][] = $js; |
108 | 108 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | |
126 | 126 | protected function generateManifest() |
127 | 127 | { |
128 | - $min = collect(Admin::$min)->mapWithKeys(function ($path, $type) { |
|
128 | + $min = collect(Admin::$min)->mapWithKeys(function($path, $type) { |
|
129 | 129 | return [$type => sprintf('%s?id=%s', $path, md5(uniqid()))]; |
130 | 130 | }); |
131 | 131 |