You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 */publicfunctionlookupHttpCode($lookUpCode = "")
{ ... }
The text was updated successfully, but these errors were encountered:
:) Well... it's an open enhancement suggestion - for anyone who wants to take it. I may try to later this week, I'll let you know. Also, doesn't look like I can label issues, so you may want to slap that on here.
I might take a stab as well if I have time open up for it. Just because I've not really done the PHPdoc stuff. If not, feel free to do it, or whom ever wants to.
Adding standard PHPdoc method comments will help with some IDEs and their ability to autocomplete code. Adding it here as an enhancement opportunity.
Example:
The text was updated successfully, but these errors were encountered: