Skip to content

Commit 5c6e57a

Browse files
committed
Merge branch 'QA'
Signed-off-by: William Desportes <williamdes@wdes.fr>
2 parents abda0ff + 50babee commit 5c6e57a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Statements/CreateStatement.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ class CreateStatement extends Statement
285285
*
286286
* Used by `CREATE TABLE`, `CREATE VIEW`
287287
*
288-
* @var SelectStatement
288+
* @var SelectStatement|null
289289
*/
290290
public $select;
291291

@@ -689,6 +689,7 @@ public function parse(Parser $parser, TokensList $list)
689689
$this->body[] = $token;
690690
}
691691
} elseif ($this->options->has('VIEW')) {
692+
/** @var Token $token */
692693
$token = $list->getNext(); // Skipping whitespaces and comments.
693694

694695
// Parsing columns list.

0 commit comments

Comments
 (0)