Skip to content

Instantly share code, notes, and snippets.

@nahid

nahid/block3.php Secret

Last active July 12, 2018 16:32
Show Gist options
  • Save nahid/556622f83029ee48c1f13cb35ff80e9a to your computer and use it in GitHub Desktop.
Save nahid/556622f83029ee48c1f13cb35ff80e9a to your computer and use it in GitHub Desktop.
<?php
class Man
{
function hand($substance){
return 'I grab the '.$substance;
}
function leg($path)
{
return 'I go to '.$path;
}
function mouth($food)
{
return 'I eat '.$food;
}
function eye($object)
{
return 'I watch '.$object;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment