Passed
Push — master ( 1a7650...86af3f )
by Dmitrijs
01:56
created
src/helpers/Html.php 1 patch
Spacing   +5 added lines, -5 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);
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      * @see https://materializecss.com/typography.html
109 109
      * @see endBlockquote()
110 110
      */
111
-    public static function beginBlockquote($options = [])
111
+    public static function beginBlockquote($options = [ ])
112 112
     {
113 113
         return static::beginTag('blockquote', $options);
114 114
     }
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      * @see beginBlockquote()
139 139
      * @see beginBlockquote()
140 140
      */
141
-    public static function blockquote($content = '', $options = [])
141
+    public static function blockquote($content = '', $options = [ ])
142 142
     {
143 143
         return static::tag('blockquote', $content, $options);
144 144
     }
Please login to merge, or discard this patch.