Skip to content

Commit

Permalink
Minor code improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Ungureanu committed Oct 3, 2015
1 parent deaec53 commit 4f8868b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Components/PartitionDefinition.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
*/
namespace SqlParser\Components;

use SqlParser\Context;
use SqlParser\Component;
use SqlParser\Parser;
use SqlParser\Token;
Expand Down
2 changes: 1 addition & 1 deletion src/Lexer.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class Lexer
*/
public static function getTokens($str, $strict = false, $delimiter = null)
{
$lexer = new Lexer($str);
$lexer = new Lexer($str, $strict, $delimiter);
return $lexer->list;
}

Expand Down

0 comments on commit 4f8868b

Please sign in to comment.