File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,32 @@ class IntoKeyword extends Component
9595 */
9696 public $ lines_options ;
9797
98+ /**
99+ * Constructor.
100+ *
101+ * @param string $type Type of destination (may be OUTFILE).
102+ * @param string|Expression $dest Actual destination.
103+ * @param array $columns Column list of destination.
104+ * @param array $values Selected fields.
105+ * @param OptionsArray $fields_options Options for FIELDS/COLUMNS keyword.
106+ * @param OptionsArray $fields_keyword Options for OPTINOS keyword.
107+ */
108+ public function __construct (
109+ $ type = null ,
110+ $ dest = null ,
111+ $ columns = null ,
112+ $ values = null ,
113+ $ fields_options = null ,
114+ $ fields_keyword = null
115+ ) {
116+ $ this ->type = $ type ;
117+ $ this ->dest = $ dest ;
118+ $ this ->columns = $ columns ;
119+ $ this ->values = $ values ;
120+ $ this ->fields_options = $ fields_options ;
121+ $ this ->fields_keyword = $ fields_keyword ;
122+ }
123+
98124 /**
99125 * @param Parser $parser the parser that serves as context
100126 * @param TokensList $list the list of tokens that are being parsed
You can’t perform that action at this time.
0 commit comments