@@ -99,38 +99,38 @@ |
||
| 99 | 99 | * |
| 100 | 100 | * @var Expression[]|null |
| 101 | 101 | */ |
| 102 | - public array|null $tables = null; |
|
| 102 | + public array | null $tables = null; |
|
| 103 | 103 | |
| 104 | 104 | /** |
| 105 | 105 | * The updated values. |
| 106 | 106 | * |
| 107 | 107 | * @var SetOperation[]|null |
| 108 | 108 | */ |
| 109 | - public array|null $set = null; |
|
| 109 | + public array | null $set = null; |
|
| 110 | 110 | |
| 111 | 111 | /** |
| 112 | 112 | * Conditions used for filtering each row of the result set. |
| 113 | 113 | * |
| 114 | 114 | * @var Condition[]|null |
| 115 | 115 | */ |
| 116 | - public array|null $where = null; |
|
| 116 | + public array | null $where = null; |
|
| 117 | 117 | |
| 118 | 118 | /** |
| 119 | 119 | * Specifies the order of the rows in the result set. |
| 120 | 120 | * |
| 121 | 121 | * @var OrderKeyword[]|null |
| 122 | 122 | */ |
| 123 | - public array|null $order = null; |
|
| 123 | + public array | null $order = null; |
|
| 124 | 124 | |
| 125 | 125 | /** |
| 126 | 126 | * Conditions used for limiting the size of the result set. |
| 127 | 127 | */ |
| 128 | - public Limit|null $limit = null; |
|
| 128 | + public Limit | null $limit = null; |
|
| 129 | 129 | |
| 130 | 130 | /** |
| 131 | 131 | * Joins. |
| 132 | 132 | * |
| 133 | 133 | * @var JoinKeyword[]|null |
| 134 | 134 | */ |
| 135 | - public array|null $join = null; |
|
| 135 | + public array | null $join = null; |
|
| 136 | 136 | } |
@@ -33,5 +33,5 @@ |
||
| 33 | 33 | * |
| 34 | 34 | * @var Expression[]|null |
| 35 | 35 | */ |
| 36 | - public array|null $tables = null; |
|
| 36 | + public array | null $tables = null; |
|
| 37 | 37 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | /** |
| 35 | 35 | * The parser of the statement to be explained |
| 36 | 36 | */ |
| 37 | - public Parser|null $bodyParser = null; |
|
| 37 | + public Parser | null $bodyParser = null; |
|
| 38 | 38 | |
| 39 | 39 | /** |
| 40 | 40 | * The statement alias, could be any of the following: |
@@ -47,22 +47,22 @@ discard block |
||
| 47 | 47 | /** |
| 48 | 48 | * The connection identifier, if used. |
| 49 | 49 | */ |
| 50 | - public int|null $connectionId = null; |
|
| 50 | + public int | null $connectionId = null; |
|
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * The explained database for the table's name, if used. |
| 54 | 54 | */ |
| 55 | - public string|null $explainedDatabase = null; |
|
| 55 | + public string | null $explainedDatabase = null; |
|
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | 58 | * The explained table's name, if used. |
| 59 | 59 | */ |
| 60 | - public string|null $explainedTable = null; |
|
| 60 | + public string | null $explainedTable = null; |
|
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | 63 | * The explained column's name, if used. |
| 64 | 64 | */ |
| 65 | - public string|null $explainedColumn = null; |
|
| 65 | + public string | null $explainedColumn = null; |
|
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | 68 | * @param Parser $parser the instance that requests parsing |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | /** |
| 24 | 24 | * The name of the truncated table. |
| 25 | 25 | */ |
| 26 | - public Expression|null $table = null; |
|
| 26 | + public Expression | null $table = null; |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * Special build method for truncate statement as Statement::build would return empty string. |
@@ -71,10 +71,10 @@ |
||
| 71 | 71 | * |
| 72 | 72 | * @var Expression[]|null |
| 73 | 73 | */ |
| 74 | - public array|null $fields = null; |
|
| 74 | + public array | null $fields = null; |
|
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | 77 | * Table of the dropped index. |
| 78 | 78 | */ |
| 79 | - public Expression|null $table = null; |
|
| 79 | + public Expression | null $table = null; |
|
| 80 | 80 | } |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | /** |
| 24 | 24 | * The name of the function and its parameters. |
| 25 | 25 | */ |
| 26 | - public FunctionCall|null $call = null; |
|
| 26 | + public FunctionCall | null $call = null; |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * Build statement for CALL. |
@@ -78,21 +78,21 @@ |
||
| 78 | 78 | /** |
| 79 | 79 | * Options used in current statement. |
| 80 | 80 | */ |
| 81 | - public OptionsArray|null $options = null; |
|
| 81 | + public OptionsArray | null $options = null; |
|
| 82 | 82 | |
| 83 | 83 | /** |
| 84 | 84 | * The end options of this query. |
| 85 | 85 | * |
| 86 | 86 | * @see SetStatement::STATEMENT_END_OPTIONS |
| 87 | 87 | */ |
| 88 | - public OptionsArray|null $endOptions = null; |
|
| 88 | + public OptionsArray | null $endOptions = null; |
|
| 89 | 89 | |
| 90 | 90 | /** |
| 91 | 91 | * The updated values. |
| 92 | 92 | * |
| 93 | 93 | * @var SetOperation[]|null |
| 94 | 94 | */ |
| 95 | - public array|null $set = null; |
|
| 95 | + public array | null $set = null; |
|
| 96 | 96 | |
| 97 | 97 | public function build(): string |
| 98 | 98 | { |
@@ -26,19 +26,19 @@ |
||
| 26 | 26 | /** |
| 27 | 27 | * The type of this query. |
| 28 | 28 | */ |
| 29 | - public int|null $type = null; |
|
| 29 | + public int | null $type = null; |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * The list of statements in this transaction. |
| 33 | 33 | * |
| 34 | 34 | * @var Statement[]|null |
| 35 | 35 | */ |
| 36 | - public array|null $statements = null; |
|
| 36 | + public array | null $statements = null; |
|
| 37 | 37 | |
| 38 | 38 | /** |
| 39 | 39 | * The ending transaction statement which may be a `COMMIT` or a `ROLLBACK`. |
| 40 | 40 | */ |
| 41 | - public TransactionStatement|null $end = null; |
|
| 41 | + public TransactionStatement | null $end = null; |
|
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * Options for this query. |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | * |
| 25 | 25 | * @var RenameOperation[]|null |
| 26 | 26 | */ |
| 27 | - public array|null $renames = null; |
|
| 27 | + public array | null $renames = null; |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * Function called before the token is processed. |