-
-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\Doctrine\Common\Lexer\input #30
Comments
Why would that be necessary? The docblock (https://github.com/doctrine/lexer/blob/master/lib/Doctrine/Common/Lexer/AbstractLexer.php#L239) states that |
As @xabbuh said, the docblock clearly expects a string in |
The doc bloc does not prevent user from calling this with a float. |
Hmmm could this happen with something like |
Hi,
on Line 255 there is preg_split($this->regex, $input, -1, $flags)
should be preg_split($this->regex, (string)$input, -1, $flags) due to 7.3 type casting
can you fix this, please
Thanks
The text was updated successfully, but these errors were encountered: