Skip to content

Instantly share code, notes, and snippets.

@viebel
Created June 28, 2016 16:23
Show Gist options
  • Save viebel/0f0934176da071ce4d9b8f488f246f24 to your computer and use it in GitHub Desktop.
Save viebel/0f0934176da071ce4d9b8f488f246f24 to your computer and use it in GitHub Desktop.
class Voice {
public function loud($text) {
return $text . '!!!!!!';
}
}
$lang = new Voice;
echo $lang->loud("PHP");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment