Skip to content

Instantly share code, notes, and snippets.

@iamcarrico
Created March 24, 2014 17:17
Show Gist options
  • Save iamcarrico/9744777 to your computer and use it in GitHub Desktop.
Save iamcarrico/9744777 to your computer and use it in GitHub Desktop.
A proper goddamn comment
/**
* Short description.
*
* A longer, multi-line description.
*
* @param string $name
* A description of your variable
* @param int $count (default: 0)
*
* @return boolean
* What you expect to return.
*/
function function_name($name, $count = 0) {
// Stuff
return TRUE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment