Completed
Push — master ( 633f87...d85777 )
by Cheren
03:16
created
src/View/Helper/HtmlHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
         $isMaterializeCss = $this->getConfig('materializeCss', false);
93 93
 
94 94
         if ($isMaterializeCss === true) {
95
-            $this->_configWrite('prepareBtnClass', function (Helper $form, $options, $button) {
95
+            $this->_configWrite('prepareBtnClass', function(Helper $form, $options, $button) {
96 96
                 return $this->_prepareBtn($form, $options, $button);
97 97
             });
98 98
 
99
-            $this->_configWrite('prepareTooltip', function (Helper $html, $options, $tooltip) {
99
+            $this->_configWrite('prepareTooltip', function(Helper $html, $options, $tooltip) {
100 100
                 return $this->_prepareTooltip($html, $options, $tooltip);
101 101
             });
102 102
         }
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
             'entity' => $entity,
289 289
         ], $data);
290 290
 
291
-        return $this->_View->element('Core.' .  __FUNCTION__, $data);
291
+        return $this->_View->element('Core.' . __FUNCTION__, $data);
292 292
     }
293 293
 
294 294
     /**
Please login to merge, or discard this patch.
src/View/Helper/FormHelper.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -84,10 +84,10 @@  discard block
 block discarded – undo
84 84
                     'checkbox' => 'Core\View\Widget\MaterializeCss\CheckboxWidget'
85 85
                 ])
86 86
                 ->set('templates', 'Core.templates/materialize_css_form')
87
-                ->set('prepareBtnClass', function (Helper $form, $options, $button) {
87
+                ->set('prepareBtnClass', function(Helper $form, $options, $button) {
88 88
                     return $this->_prepareBtn($form, $options, $button);
89 89
                 })
90
-                ->set('prepareTooltip', function (Helper $html, $options, $tooltip) {
90
+                ->set('prepareTooltip', function(Helper $html, $options, $tooltip) {
91 91
                     return $this->_prepareTooltip($html, $options, $tooltip);
92 92
                 });
93 93
         }
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
      */
265 265
     protected function _addDefaultContextProviders()
266 266
     {
267
-        $this->addContextProvider('orm', function ($request, $data) {
267
+        $this->addContextProvider('orm', function($request, $data) {
268 268
             if (is_array($data['entity']) || $data['entity'] instanceof \Traversable) {
269 269
                 $pass = (new Collection($data['entity']))->first() !== null;
270 270
                 if ($pass) {
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
      */
305 305
     protected function _addFormArrayProvider()
306 306
     {
307
-        $this->addContextProvider('array', function ($request, $data) {
307
+        $this->addContextProvider('array', function($request, $data) {
308 308
             if (is_array($data['entity']) && isset($data['entity']['schema'])) {
309 309
                 return new ArrayContext($request, $data['entity']);
310 310
             }
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
      */
319 319
     protected function _addFormContextProvider()
320 320
     {
321
-        $this->addContextProvider('form', function ($request, $data) {
321
+        $this->addContextProvider('form', function($request, $data) {
322 322
             if ($data['entity'] instanceof Form) {
323 323
                 return new FormContext($request, $data);
324 324
             }
Please login to merge, or discard this patch.
plugin.manifest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         'description' => 'Core plugin for UnionCMS'
31 31
     ],
32 32
 
33
-    'Controller.initialize' => function (Controller $controller) {
33
+    'Controller.initialize' => function(Controller $controller) {
34 34
         $controller->loadComponent('Csrf');
35 35
         $controller->loadComponent('Cookie');
36 36
         $controller->loadComponent('Security', [
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         ]);
47 47
     },
48 48
 
49
-    'View.initialize' => function (AppView $view) {
49
+    'View.initialize' => function(AppView $view) {
50 50
         $view->loadHelper('Core.Nav');
51 51
         $view->loadHelper('Core.Less');
52 52
         $view->loadHelper('Core.Assets');
Please login to merge, or discard this patch.