-
Notifications
You must be signed in to change notification settings - Fork 40
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
Support of PHP 7.1 #143
Comments
Did you may miss the I tested it with a simple function
The PHP-Parser 3.x should support PHP until PHP 7.2. |
There's definitely something going on here. I have a similar issue when grouping use declaration. When using in a file: use Symfony\Component\HttpFoundation\{
Request,
Response
}; I have an error displayed in the output:
When replacing the group use declaration by multiple use: use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response; The error is gone. I'm running deprecation detector using the following docker image: https://github.com/jakzal/phpqa , which runs PHP 7.2. |
Have similar issue.
|
I get a syntax error while testing on PHP 7.1 code:
this file contains the optional return value operator
public function getValue() ?int
a quick look into this composer.json reveals the support of php 7.0 - so I'd like to know are there any plans to upgrade to support php 7.1? I assume of course, pull requests are welcome ;)
The text was updated successfully, but these errors were encountered: