When i try to split expression "select 1#" to tokens using PHPSQLLexer->split it returns an array: array:3 [▼ 0 => "select" 1 => " " 2 => "1#" ] It should be "select", " ", "1" (number) and "#" (comment)