Skip to content

Instantly share code, notes, and snippets.

@IQAndreas
Created June 13, 2012 07:17
Show Gist options
  • Save IQAndreas/2922489 to your computer and use it in GitHub Desktop.
Save IQAndreas/2922489 to your computer and use it in GitHub Desktop.
Ignoring constructor in a subclass
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