Skip to content

Instantly share code, notes, and snippets.

@mcjwsk
Created October 30, 2015 14:04
Show Gist options
  • Save mcjwsk/7504bc002a0b8c1e08b7 to your computer and use it in GitHub Desktop.
Save mcjwsk/7504bc002a0b8c1e08b7 to your computer and use it in GitHub Desktop.
<?php
class SomeParent {
public function test() {
echo 'parent';
}
}
class Element1 extends SomeParent {
public function test() {
parent::test();
$this->test();
}
}
class Element2 extends Element1 {
public function test() {
parent::test();
}
}
$el = new Element2();
$el->test();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment