Skip to content

Commit 3285094

Browse files
authored
Fix syntax error in README's example
Fix #91 Signed-off-by: Deven Bansod <devenbansod.bits@gmail.com>
1 parent a12665e commit 3285094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use SqlParser\Utils\Query;
5252

5353
$query = 'OPTIMIZE TABLE tbl';
5454
$parser = new Parser($query);
55-
$flags = Query::getFlags($parser->statements[0])
55+
$flags = Query::getFlags($parser->statements[0]);
5656

5757
echo $flags['querytype'];
5858
```

0 commit comments

Comments
 (0)