client-php/src/Reflect/Method.php
Victor Westerlund 25b5e2dad1
feat: return Response object from chainable request methods
* feat: add Response object

* wip: 2023-10-02T11:22:18+0200 (1696238538)

* fix: Response from arguments or array

* fix: refactor methods

* feat: add method chaining

* wip: 2024-03-18T11:52:20+0100 (1710759140)

* wip: 2024-03-19T16:51:47+0100 (1710863507)

* feat(doc): update README
2024-03-19 16:16:57 +00:00

13 lines
No EOL
150 B
PHP

<?php
namespace Reflect;
// Allowed HTTP verbs
enum Method {
case GET;
case POST;
case PUT;
case DELETE;
case PATCH;
case OPTIONS;
}