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
extends will try and use native inheritance if available for the platform
extends
Example
class A { int baseMethod() {} } class B inherits A { // Basic static inheritance } class C extends A { // Native inheritance with static fallback }
Output(PHP)
class A { baseMethod() {} } class B { baseMethod() {} } class C extends A { // Using native inheritance }
The text was updated successfully, but these errors were encountered:
AskingQuestions
No branches or pull requests
extends
will try and use native inheritance if available for the platformExample
Output(PHP)
The text was updated successfully, but these errors were encountered: