Created
June 13, 2012 07:17
-
-
Save IQAndreas/2922489 to your computer and use it in GitHub Desktop.
Ignoring constructor in a subclass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Subclass extends Base | |
{ | |
public function Subclass() | |
{ | |
if (false) | |
{ | |
super(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment