mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
Update framework standards
This commit is contained in:
parent
232e056299
commit
09a91a998e
17 changed files with 282 additions and 98 deletions
11
lib/Enums/HttpMethod.php
Normal file
11
lib/Enums/HttpMethod.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?
|
||||
namespace Enums;
|
||||
|
||||
enum HttpMethod: string{
|
||||
case Delete = 'DELETE';
|
||||
case Get = 'GET';
|
||||
case Head = 'HEAD';
|
||||
case Patch = 'PATCH';
|
||||
case Post = 'POST';
|
||||
case Put = 'PUT';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue