Skip to content

Instantly share code, notes, and snippets.

@emestee
Created May 11, 2014 09:03
Show Gist options
  • Save emestee/bb298d834ce142766dbb to your computer and use it in GitHub Desktop.
Save emestee/bb298d834ce142766dbb to your computer and use it in GitHub Desktop.
<?php
class Foo
{
public function __construct()
{
print "in foo()!\n";
}
}
class Bar extends Foo
{
}
new Bar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment