Passed
Push — develop ( d4ebb9...fc114f )
by nguereza
02:24
created
src/Query/ColumnExpression.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      * @param string|null $alias
68 68
      * @return $this
69 69
      */
70
-    public function column(string|Expression|Closure $name, ?string $alias = null): self
70
+    public function column(string | Expression | Closure $name, ?string $alias = null): self
71 71
     {
72 72
         $this->queryStatement->addColumn($name, $alias);
73 73
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      * @return $this
105 105
      */
106 106
     public function count(
107
-        string|array|Expression|Closure $column = '*',
107
+        string | array | Expression | Closure $column = '*',
108 108
         ?string $alias = null,
109 109
         bool $distinct = false
110 110
     ): self {
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      * @return $this
122 122
      */
123 123
     public function avg(
124
-        string|Expression|Closure $column,
124
+        string | Expression | Closure $column,
125 125
         ?string $alias = null,
126 126
         bool $distinct = false
127 127
     ): self {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      * @return $this
136 136
      */
137 137
     public function sum(
138
-        string|Expression|Closure $column,
138
+        string | Expression | Closure $column,
139 139
         ?string $alias = null,
140 140
         bool $distinct = false
141 141
     ): self {
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      * @return $this
150 150
      */
151 151
     public function min(
152
-        string|Expression|Closure $column,
152
+        string | Expression | Closure $column,
153 153
         ?string $alias = null,
154 154
         bool $distinct = false
155 155
     ): self {
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      * @return $this
164 164
      */
165 165
     public function max(
166
-        string|Expression|Closure $column,
166
+        string | Expression | Closure $column,
167 167
         ?string $alias = null,
168 168
         bool $distinct = false
169 169
     ): self {
Please login to merge, or discard this patch.