-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
Adding standard PHPdoc method comments will help with some IDEs and their ability to autocomplete code. Adding it here as an enhancement opportunity.
Example:
/**
* Looks up an HTTP status code (by the code number) and gives back a textual description
* @param string $lookUpCide string The HTTP status code to look up
* @return string A string representation (with status code) of the response status
*/
public function lookupHttpCode($lookUpCode = "")
{ ... }