We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Following constructions produce logic errors, so they are disabled.
class ClassWithTraitAndAdaptation { use SimpleTrait { foo as protected fooBar; foo as private fooBaz; } } class ClassWithTraitAndConflict { use SimpleTrait, ConflictedSimpleTrait { foo as protected fooBar; ConflictedSimpleTrait::foo insteadof SimpleTrait; } }
The text was updated successfully, but these errors were encountered:
Since this PHP package requires php-7.1 version at least, I think this issue will not happen now because it's for php-5.6 version :).
php-7.1
php-5.6
Sorry, something went wrong.
No branches or pull requests
Following constructions produce logic errors, so they are disabled.
The text was updated successfully, but these errors were encountered: