Passed
Branch master (7d5644)
by Dmitrijs
02:56
created
Category
src/helpers/Html.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * @see https://materializecss.com/grid.html
29 29
      * @see endGridRow()
30 30
      */
31
-    public static function beginGridRow($options = [])
31
+    public static function beginGridRow($options = [ ])
32 32
     {
33 33
         static::addCssClass($options, 'row');
34 34
         return static::beginTag('div', $options);
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * @see https://materializecss.com/grid.html
59 59
      * @see endGridCol()
60 60
      */
61
-    public static function beginGridCol($options = [])
61
+    public static function beginGridCol($options = [ ])
62 62
     {
63 63
         static::addCssClass($options, 'col');
64 64
         return static::beginTag('div', $options);
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * @see beginGridCol()
90 90
      * @see endGridCol()
91 91
      */
92
-    public static function gridCol($content = '', $options = [])
92
+    public static function gridCol($content = '', $options = [ ])
93 93
     {
94 94
         static::addCssClass($options, 'col');
95 95
         return static::tag('div', $content, $options);
Please login to merge, or discard this patch.