Passed
Push — master ( 70f9f1...079f74 )
by Peter
02:21
created
src/Bootstrappers/Assets/AssetManagerBootstrapper.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
         $transpiler = $container->resolve(ITranspiler::class);
74 74
         $transpiler->registerViewFunction(
75 75
             'assetJs',
76
-            function ($keys, $type = '') use ($assets) {
77
-                $callback = function ($key) use ($assets, $type) {
76
+            function($keys, $type = '') use ($assets) {
77
+                $callback = function($key) use ($assets, $type) {
78 78
                     $path = $assets->ensureJsWebPath($key);
79 79
                     if (empty($path)) {
80 80
                         return '';
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
         );
93 93
         $transpiler->registerViewFunction(
94 94
             'assetCss',
95
-            function ($keys) use ($assets) {
96
-                $callback = function ($key) use ($assets) {
95
+            function($keys) use ($assets) {
96
+                $callback = function($key) use ($assets) {
97 97
                     $path = $assets->ensureCssWebPath($key);
98 98
                     if (empty($path)) {
99 99
                         return '';
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         );
108 108
         $transpiler->registerViewFunction(
109 109
             'assetImg',
110
-            function ($key, $alt = '') use ($assets) {
110
+            function($key, $alt = '') use ($assets) {
111 111
                 $path = $assets->ensureImgWebPath($key);
112 112
                 if (empty($path)) {
113 113
                     return '';
Please login to merge, or discard this patch.