Skip to content

Instantly share code, notes, and snippets.

@GKephart
Created January 14, 2019 14:14
Show Gist options
  • Save GKephart/b160ee4698f6d441ba09042b264cc91e to your computer and use it in GitHub Desktop.
Save GKephart/b160ee4698f6d441ba09042b264cc91e to your computer and use it in GitHub Desktop.
<?php
/**
* One line description of what this function or method does. This text usually appears inside an <h1> tag.
*
* Detailed description of what this function or method does. This text usually appears inside an <p> tag.
*
* @param <type> $firstParameter an explanation of what this parameter does
* @param <type> $secondParameter an explanation of the second parameter
* @return <type> what this function or method returns
* @throws <type> what this function or method can throw, and why it will throw
**/
function someFunction($firstParameter, $secondParameter) {
// function goes here...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment