Skip to content

Instantly share code, notes, and snippets.

@rightgo09
Last active August 29, 2015 14:14
Show Gist options
  • Save rightgo09/2d1c24128070e4a1a3d2 to your computer and use it in GitHub Desktop.
Save rightgo09/2d1c24128070e4a1a3d2 to your computer and use it in GitHub Desktop.
<?php
class Hoge {
public function foo() {
$this->bar();
}
public function bar() {
echo "Hoge::bar()\n";
}
}
class Fuga extends Hoge {
public function bar() {
echo "Fuga::bar()\n";
}
}
$fuga = new Fuga();
$fuga->foo(); // Fuga::bar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment