Skip to content

Commit e1ff927

Browse files
fixed http methods
1 parent 98b964a commit e1ff927

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Objects/Operation.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ class Operation extends BaseObject
2323
const GET = 'get';
2424
const PUT = 'put';
2525
const POST = 'post';
26-
const DELETE = 'options';
26+
const DELETE = 'delete';
27+
const OPTIONS = 'options';
2728
const HEAD = 'head';
2829
const PATCH = 'patch';
2930

0 commit comments

Comments
 (0)