We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db3f584 commit 1111a33Copy full SHA for 1111a33
wp-includes/sqlite/class-wp-sqlite-token.php
@@ -161,7 +161,7 @@ class WP_SQLite_Token {
161
*
162
* @var mixed|string|null
163
*/
164
- public $keyword;
+ public $keyword = null;
165
166
/**
167
* The type of this token.
@@ -195,11 +195,10 @@ class WP_SQLite_Token {
195
* @param int $flags The flags of the token.
196
197
public function __construct( $token, $type = 0, $flags = 0 ) {
198
- $this->token = $token;
199
- $this->type = $type;
200
- $this->flags = $flags;
201
- $this->keyword = null;
202
- $this->value = $this->extract();
+ $this->token = $token;
+ $this->type = $type;
+ $this->flags = $flags;
+ $this->value = $this->extract();
203
}
204
205
0 commit comments