Skip to content

Instantly share code, notes, and snippets.

@sunkibaek
Created December 6, 2013 19:10
Show Gist options
  • Save sunkibaek/7830440 to your computer and use it in GitHub Desktop.
Save sunkibaek/7830440 to your computer and use it in GitHub Desktop.
class Bird {
public function sing () {
echo 'Tweet';
}
}
$bird = new Bird();
$bird->sing();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment