@@ -28,7 +28,7 @@ discard block |
||
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 |
||
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 |
||
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); |