-
-
Notifications
You must be signed in to change notification settings - Fork 136
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
Minor PS API changes for 10.0.x will break plugin #611
Comments
@neuro159 I think Replacement especially for PhpTypeProvider2 would be nice. It's definitely a hack by now to simulate array return types. Is there a way do not break is feature?
if(name.equals("findAll") || name.equals("findBy")) {
method.getType().add(phpClass.getFQN() + "[]");
return phpNamedElementCollections;
} |
Sorry for hijacking this issue. Does anyone know the status of this plugin in phpstorm 10? Will updating completely break it? |
PhpStorm 10 itself will work. some tests fail https://travis-ci.org/Haehnchen/idea-php-symfony2-plugin but not critical. but with next release 10.0.x we will get into trouble. |
@Haehnchen could you please release a hotfix fixing this? In the new EAP, every (!) single click in a PHP file triggers
|
@apfelbox I confirm. |
... possible tomorrow |
com.jetbrains.php.lang.psi.resolve.types.PhpType#add(java.util.Collection<java.lang.String>) is removed.
please use series of com.jetbrains.php.lang.psi.resolve.types.PhpType#add(java.lang.String) calls.
The text was updated successfully, but these errors were encountered: