Skip to content

Instantly share code, notes, and snippets.

@devmatheus
Created April 23, 2014 17:27
Show Gist options
  • Save devmatheus/11225093 to your computer and use it in GitHub Desktop.
Save devmatheus/11225093 to your computer and use it in GitHub Desktop.
<?php
class A {
public function foo() {
echo "foo";
}
}
class B extends A {
public function foo() {
echo "classe B\n";
parent::foo();
// parent:: faz referência a classe base, no caso "A"
}
}
(new B)->foo();
/**
* output
* classe B
* foo
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment