@@ -62,28 +62,28 @@ class IntoKeyword extends Component
6262 /**
6363 * Type of target (OUTFILE or SYMBOL).
6464 *
65- * @var string
65+ * @var string|null
6666 */
6767 public $ type ;
6868
6969 /**
7070 * The destination, which can be a table or a file.
7171 *
72- * @var string|Expression
72+ * @var string|Expression|null
7373 */
7474 public $ dest ;
7575
7676 /**
7777 * The name of the columns.
7878 *
79- * @var array
79+ * @var array|null
8080 */
8181 public $ columns ;
8282
8383 /**
8484 * The values to be selected into (SELECT .. INTO @var1).
8585 *
86- * @var Expression[]
86+ * @var Expression[]|null
8787 */
8888 public $ values ;
8989
@@ -92,14 +92,14 @@ class IntoKeyword extends Component
9292 *
9393 * @see static::$FIELDS_OPTIONS
9494 *
95- * @var OptionsArray
95+ * @var OptionsArray|null
9696 */
9797 public $ fields_options ;
9898
9999 /**
100100 * Whether to use `FIELDS` or `COLUMNS` while building.
101101 *
102- * @var bool
102+ * @var bool|null
103103 */
104104 public $ fields_keyword ;
105105
@@ -108,17 +108,17 @@ class IntoKeyword extends Component
108108 *
109109 * @see static::$LINES_OPTIONS
110110 *
111- * @var OptionsArray
111+ * @var OptionsArray|null
112112 */
113113 public $ lines_options ;
114114
115115 /**
116- * @param string $type type of destination (may be OUTFILE)
117- * @param string|Expression $dest actual destination
118- * @param array $columns column list of destination
119- * @param array $values selected fields
120- * @param OptionsArray $fieldsOptions options for FIELDS/COLUMNS keyword
121- * @param bool $fieldsKeyword options for OPTIONS keyword
116+ * @param string|null $type type of destination (may be OUTFILE)
117+ * @param string|Expression|null $dest actual destination
118+ * @param array|null $columns column list of destination
119+ * @param array|null $values selected fields
120+ * @param OptionsArray|null $fieldsOptions options for FIELDS/COLUMNS keyword
121+ * @param bool|null $fieldsKeyword options for OPTIONS keyword
122122 */
123123 public function __construct (
124124 $ type = null ,
0 commit comments