Skip to content

Commit 54970a2

Browse files
committed
Make the method access public since called from object
Signed-off-by: Deven Bansod <[email protected]>
1 parent 62ca07c commit 54970a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Components/IntoKeyword.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,14 +186,14 @@ public static function parse(Parser $parser, TokensList $list, array $options =
186186

187187
$state = 3;
188188
} elseif ($state == 3) {
189-
$ret->_parseFileOptions($parser, $list, $token->value);
189+
$ret->parseFileOptions($parser, $list, $token->value);
190190
$state = 4;
191191
} elseif ($state == 4) {
192192
if ($token->type === Token::TYPE_KEYWORD && $token->value !== 'LINES') {
193193
break;
194194
}
195195

196-
$ret->_parseFileOptions($parser, $list, $token->value);
196+
$ret->parseFileOptions($parser, $list, $token->value);
197197
$state = 5;
198198
}
199199
}
@@ -202,7 +202,7 @@ public static function parse(Parser $parser, TokensList $list, array $options =
202202
return $ret;
203203
}
204204

205-
private function _parseFileOptions(Parser $parser, TokensList $list, $keyword='FIELDS') {
205+
public function parseFileOptions(Parser $parser, TokensList $list, $keyword='FIELDS') {
206206
++$list->idx;
207207

208208
if ($keyword === 'FIELDS' || $keyword === 'COLUMNS') {

0 commit comments

Comments
 (0)