Skip to content

Instantly share code, notes, and snippets.

@gmorel
Created April 21, 2015 14:38
Show Gist options
  • Save gmorel/a00ce37ea8f0262ae69c to your computer and use it in GitHub Desktop.
Save gmorel/a00ce37ea8f0262ae69c to your computer and use it in GitHub Desktop.
PHP method inheritance proof of concept
<?php
class A
{
public function methodA()
{
echo 'A';
}
}
class B extends A
{
public function methodA($test = false)
{
echo 'B';
}
}
$b = new B();
$b->methodA();
// Display 'B' without error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment