Created
January 14, 2019 14:14
-
-
Save GKephart/b160ee4698f6d441ba09042b264cc91e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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