@@ -149,14 +149,14 @@ |
||
| 149 | 149 | * |
| 150 | 150 | * @var Expression[]|null |
| 151 | 151 | */ |
| 152 | - public array|null $columnNamesOrUserVariables = null; |
|
| 152 | + public array | null $columnNamesOrUserVariables = null; |
|
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * SET clause's updated values(optional). |
| 156 | 156 | * |
| 157 | 157 | * @var SetOperation[]|null |
| 158 | 158 | */ |
| 159 | - public array|null $set = null; |
|
| 159 | + public array | null $set = null; |
|
| 160 | 160 | |
| 161 | 161 | /** |
| 162 | 162 | * Ignore 'number' LINES/ROWS. |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | * |
| 63 | 63 | * @var Array2d[]|null |
| 64 | 64 | */ |
| 65 | - public array|null $values = null; |
|
| 65 | + public array | null $values = null; |
|
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | 68 | * If SET clause is present |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | * |
| 71 | 71 | * @var SetOperation[]|null |
| 72 | 72 | */ |
| 73 | - public array|null $set = null; |
|
| 73 | + public array | null $set = null; |
|
| 74 | 74 | |
| 75 | 75 | /** |
| 76 | 76 | * If SELECT clause is present |
@@ -106,28 +106,28 @@ discard block |
||
| 106 | 106 | * |
| 107 | 107 | * @var Expression[]|null |
| 108 | 108 | */ |
| 109 | - public array|null $from = null; |
|
| 109 | + public array | null $from = null; |
|
| 110 | 110 | |
| 111 | 111 | /** |
| 112 | 112 | * Joins. |
| 113 | 113 | * |
| 114 | 114 | * @var JoinKeyword[]|null |
| 115 | 115 | */ |
| 116 | - public array|null $join = null; |
|
| 116 | + public array | null $join = null; |
|
| 117 | 117 | |
| 118 | 118 | /** |
| 119 | 119 | * Tables used as sources for this statement. |
| 120 | 120 | * |
| 121 | 121 | * @var Expression[]|null |
| 122 | 122 | */ |
| 123 | - public array|null $using = null; |
|
| 123 | + public array | null $using = null; |
|
| 124 | 124 | |
| 125 | 125 | /** |
| 126 | 126 | * Columns used in this statement. |
| 127 | 127 | * |
| 128 | 128 | * @var Expression[]|null |
| 129 | 129 | */ |
| 130 | - public array|null $columns = null; |
|
| 130 | + public array | null $columns = null; |
|
| 131 | 131 | |
| 132 | 132 | /** |
| 133 | 133 | * Partitions used as source for this statement. |
@@ -141,14 +141,14 @@ discard block |
||
| 141 | 141 | * |
| 142 | 142 | * @var Condition[]|null |
| 143 | 143 | */ |
| 144 | - public array|null $where = null; |
|
| 144 | + public array | null $where = null; |
|
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | 147 | * Specifies the order of the rows in the result set. |
| 148 | 148 | * |
| 149 | 149 | * @var OrderKeyword[]|null |
| 150 | 150 | */ |
| 151 | - public array|null $order = null; |
|
| 151 | + public array | null $order = null; |
|
| 152 | 152 | |
| 153 | 153 | /** |
| 154 | 154 | * Conditions used for limiting the size of the result set. |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * |
| 78 | 78 | * @var ArrayObj[]|null |
| 79 | 79 | */ |
| 80 | - public array|null $values = null; |
|
| 80 | + public array | null $values = null; |
|
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | 83 | * If SET clause is present |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | * |
| 86 | 86 | * @var SetOperation[]|null |
| 87 | 87 | */ |
| 88 | - public array|null $set = null; |
|
| 88 | + public array | null $set = null; |
|
| 89 | 89 | |
| 90 | 90 | /** |
| 91 | 91 | * If SELECT clause is present |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | * |
| 110 | 110 | * @var SetOperation[]|null |
| 111 | 111 | */ |
| 112 | - public array|null $onDuplicateSet = null; |
|
| 112 | + public array | null $onDuplicateSet = null; |
|
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * @return string |