mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
Add PHPDocs and code formatting
This commit is contained in:
parent
ac733df938
commit
3f822b85c3
4 changed files with 53 additions and 19 deletions
|
@ -7,8 +7,12 @@ enum HttpCode: int{
|
|||
case Accepted = 202;
|
||||
case NoContent = 204;
|
||||
|
||||
case MovedPermanently = 301; // Permanent redirect
|
||||
case Found = 302; // Temporary redirect
|
||||
/** Permanent redirect. */
|
||||
case MovedPermanently = 301;
|
||||
|
||||
/** Temporary redirect. */
|
||||
case Found = 302;
|
||||
|
||||
case SeeOther = 303;
|
||||
|
||||
case BadRequest = 400;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue