Skip to content

Instantly share code, notes, and snippets.

@wilcorrea
Forked from pedromazala/Child.php
Created May 24, 2017 13:49
Show Gist options
  • Save wilcorrea/f2f0b11d5c4da6e6b84b38a484e121fc to your computer and use it in GitHub Desktop.
Save wilcorrea/f2f0b11d5c4da6e6b84b38a484e121fc 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