Completed
Push — master ( 51a3e9...1c8cca )
by Cheren
07:18
created
src/View/Helper/Traits/HelperTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      * Create current icon.
62 62
      *
63 63
      * @param HtmlHelper $html
64
-     * @param string|int $title
64
+     * @param string|null $title
65 65
      * @param array $options
66 66
      * @return array
67 67
      */
Please login to merge, or discard this patch.
plugin.manifest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,12 +29,12 @@  discard block
 block discarded – undo
29 29
         'description' => 'Core plugin for UnionCMS'
30 30
     ],
31 31
 
32
-    'Controller.initialize' => function (Controller $controller) {
32
+    'Controller.initialize' => function(Controller $controller) {
33 33
         $controller->loadComponent('RequestHandler');
34 34
         $controller->loadComponent('Flash');
35 35
     },
36 36
 
37
-    'View.initialize' => function (AppView $view) {
37
+    'View.initialize' => function(AppView $view) {
38 38
         $view->loadHelper('Core.Nav');
39 39
         $view->loadHelper('Core.Less');
40 40
         $view->loadHelper('Core.Assets');
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         $view->loadHelper('Html', ['className' => 'Core.Html']);
46 46
         $view->loadHelper('Form', [
47 47
             'className' => 'Core.Form',
48
-            'prepareBtnClass' => function (\Core\View\Helper\FormHelper $html, $options, $button) {
48
+            'prepareBtnClass' => function(\Core\View\Helper\FormHelper $html, $options, $button) {
49 49
                 $options = $html->addClass($options, 'waves-effect waves-light btn');
50 50
                 if (!empty($button)) {
51 51
                     $options = $html->addClass($options, Str::trim((string) $button));
Please login to merge, or discard this patch.