Passed
Pull Request — master (#485)
by
unknown
05:55 queued 02:24
created
src/Exceptions/ParserException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param Token  $token the token that produced this exception
25 25
      * @param int    $code  the code of this error
26 26
      */
27
-    public function __construct($msg = '', Token|null $token = null, $code = 0)
27
+    public function __construct($msg = '', Token | null $token = null, $code = 0)
28 28
     {
29 29
         parent::__construct($msg, $code);
30 30
         $this->token = $token;
Please login to merge, or discard this patch.
src/TokensList.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      * Gets the previous token. Skips any irrelevant token (whitespaces and
119 119
      * comments).
120 120
      */
121
-    public function getPrevious(): Token|null
121
+    public function getPrevious(): Token | null
122 122
     {
123 123
         for (; $this->idx >= 0; --$this->idx) {
124 124
             if (
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      */
142 142
     public function getPreviousOfType($type)
143 143
     {
144
-        if (! is_array($type)) {
144
+        if (!is_array($type)) {
145 145
             $type = [$type];
146 146
         }
147 147
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      */
164 164
     public function getNextOfType($type)
165 165
     {
166
-        if (! is_array($type)) {
166
+        if (!is_array($type)) {
167 167
             $type = [$type];
168 168
         }
169 169
 
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
      * @param int $type the type of the token
202 202
      * @param int $flag the flag of the token
203 203
      */
204
-    public function getNextOfTypeAndFlag(int $type, int $flag): Token|null
204
+    public function getNextOfTypeAndFlag(int $type, int $flag): Token | null
205 205
     {
206 206
         for (; $this->idx < $this->count; ++$this->idx) {
207 207
             if (($this->tokens[$this->idx]->type === $type) && ($this->tokens[$this->idx]->flags === $flag)) {
Please login to merge, or discard this patch.
src/Utils/CLI.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     {
40 40
         foreach ($longopts as $value) {
41 41
             $value = rtrim($value, ':');
42
-            if (! isset($params[$value])) {
42
+            if (!isset($params[$value])) {
43 43
                 continue;
44 44
             }
45 45
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      *
63 63
      * @return string[]|false[]|false
64 64
      */
65
-    public function getopt($opt, $long): array|false
65
+    public function getopt($opt, $long): array | false
66 66
     {
67 67
         return getopt($opt, $long);
68 68
     }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     /**
71 71
      * @return string[]|false[]|false
72 72
      */
73
-    public function parseHighlight(): array|false
73
+    public function parseHighlight(): array | false
74 74
     {
75 75
         $longopts = [
76 76
             'help',
@@ -84,11 +84,11 @@  discard block
 block discarded – undo
84 84
         }
85 85
 
86 86
         $this->mergeLongOpts($params, $longopts);
87
-        if (! isset($params['f'])) {
87
+        if (!isset($params['f'])) {
88 88
             $params['f'] = 'cli';
89 89
         }
90 90
 
91
-        if (! in_array($params['f'], ['html', 'cli', 'text'])) {
91
+        if (!in_array($params['f'], ['html', 'cli', 'text'])) {
92 92
             echo "ERROR: Invalid value for format!\n";
93 93
 
94 94
             return false;
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
             return 0;
114 114
         }
115 115
 
116
-        if (! isset($params['q'])) {
116
+        if (!isset($params['q'])) {
117 117
             $stdIn = $this->readStdin();
118 118
 
119 119
             if ($stdIn) {
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     /**
154 154
      * @return string[]|false[]|false
155 155
      */
156
-    public function parseLint(): array|false
156
+    public function parseLint(): array | false
157 157
     {
158 158
         $longopts = [
159 159
             'help',
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
             Context::load($params['c']);
188 188
         }
189 189
 
190
-        if (! isset($params['q'])) {
190
+        if (!isset($params['q'])) {
191 191
             $stdIn = $this->readStdin();
192 192
 
193 193
             if ($stdIn) {
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     /**
233 233
      * @return string[]|false[]|false
234 234
      */
235
-    public function parseTokenize(): array|false
235
+    public function parseTokenize(): array | false
236 236
     {
237 237
         $longopts = [
238 238
             'help',
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
             return 0;
262 262
         }
263 263
 
264
-        if (! isset($params['q'])) {
264
+        if (!isset($params['q'])) {
265 265
             $stdIn = $this->readStdin();
266 266
 
267 267
             if ($stdIn) {
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
         return 1;
298 298
     }
299 299
 
300
-    public function readStdin(): string|false|null
300
+    public function readStdin(): string | false | null
301 301
     {
302 302
         $read = [STDIN];
303 303
         $write = [];
Please login to merge, or discard this patch.
src/Statements/LoadStatement.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,14 +149,14 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/Statements/ReplaceStatement.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Statements/DeleteStatement.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -106,28 +106,28 @@  discard block
 block discarded – undo
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
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/Statements/InsertStatement.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/UtfString.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     {
189 189
         $this->str = $str;
190 190
         $this->byteLen = mb_strlen($str, '8bit');
191
-        if (! mb_check_encoding($str, 'UTF-8')) {
191
+        if (!mb_check_encoding($str, 'UTF-8')) {
192 192
             $this->charLen = 0;
193 193
         } else {
194 194
             $this->charLen = mb_strlen($str, 'UTF-8');
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
         // Use the default ASCII map as queries are mostly ASCII chars
299 299
         // ord($byte) has a performance cost
300 300
 
301
-        if (! isset(static::$asciiMap[$byte])) {
301
+        if (!isset(static::$asciiMap[$byte])) {
302 302
             // Complete the cache with missing items
303 303
             static::$asciiMap[$byte] = ord($byte);
304 304
         }
Please login to merge, or discard this patch.
src/Components/DataType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
 
125 125
             if ($state === 0) {
126 126
                 $ret->name = strtoupper((string) $token->value);
127
-                if (($token->type !== Token::TYPE_KEYWORD) || (! ($token->flags & Token::FLAG_KEYWORD_DATA_TYPE))) {
127
+                if (($token->type !== Token::TYPE_KEYWORD) || (!($token->flags & Token::FLAG_KEYWORD_DATA_TYPE))) {
128 128
                     $parser->error('Unrecognized data type.', $token);
129 129
                 }
130 130
 
Please login to merge, or discard this patch.