Skip to content

Commit

Permalink
Merge pull request #23 from sitegeist/task/addDeleteHttpMethod
Browse files Browse the repository at this point in the history
TASK: Add DELETE http method
  • Loading branch information
mficzel authored Jun 19, 2024
2 parents bdc3c62 + 5a1ea4c commit a750d94
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Classes/Domain/Path/HttpMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ enum HttpMethod: string implements \JsonSerializable
case METHOD_GET = 'get';
case METHOD_POST = 'post';
case METHOD_PUT = 'put';
case METHOD_DELETE = 'delete';

public function jsonSerialize(): string
{
Expand Down

0 comments on commit a750d94

Please sign in to comment.