Skip to content

Instantly share code, notes, and snippets.

@pedromazala
Created May 24, 2017 12:49
Show Gist options
  • Save pedromazala/bafbb50161ca6af541fb6d87ea764bd8 to your computer and use it in GitHub Desktop.
Save pedromazala/bafbb50161ca6af541fb6d87ea764bd8 to your computer and use it in GitHub Desktop.
class Child extends Father
{
public function entrypoint()
{
}
}
class Father
{
public function __construct()
{
// do all things
$this->entrypoint();
}
public function entrypoint(){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment