Completed
Push — master ( 65e4cd...9c3bbe )
by Cheren
02:52
created
plugin.manifest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         'type'        => 'theme',
29 29
         'backend'     => true,
30 30
     ],
31
-    'View.initialize' => function (AppView $view) {
31
+    'View.initialize' => function(AppView $view) {
32 32
         $helpers = $view->helpers();
33 33
 
34 34
         $helpers->unload('Form');
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $helpers->unload('Assets');
37 37
 
38 38
         $view->loadHelper('Backend.Assets');
39
-        $view->loadHelper('Html', ['className' => 'Backend.Html']);
39
+        $view->loadHelper('Html', [ 'className' => 'Backend.Html' ]);
40 40
         $view->loadHelper('Form', [
41 41
             'className' => 'Backend.Form',
42 42
             'templates' => 'Backend.templates/form',
Please login to merge, or discard this patch.
src/View/Helper/AssetsHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @var array
32 32
      */
33 33
     public $helpers = [
34
-        'Url'  => ['className' => 'Core.Url'],
35
-        'Html' => ['className' => 'Backend.Html'],
34
+        'Url'  => [ 'className' => 'Core.Url' ],
35
+        'Html' => [ 'className' => 'Backend.Html' ],
36 36
     ];
37 37
 }
Please login to merge, or discard this patch.
src/View/Helper/FormHelper.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
 {
27 27
 
28 28
     /**
29
-    * List of helpers used by this helper.
30
-    *
31
-    * @var array
32
-    */
29
+     * List of helpers used by this helper.
30
+     *
31
+     * @var array
32
+     */
33 33
     public $helpers = [
34 34
         'Url'  => ['className' => 'Core.Url'],
35 35
         'Html' => ['className' => 'Backend.Html'],
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     * @var array
32 32
     */
33 33
     public $helpers = [
34
-        'Url'  => ['className' => 'Core.Url'],
35
-        'Html' => ['className' => 'Backend.Html'],
34
+        'Url'  => [ 'className' => 'Core.Url' ],
35
+        'Html' => [ 'className' => 'Backend.Html' ],
36 36
     ];
37 37
 }
Please login to merge, or discard this patch.