Skip to content

Commit

Permalink
fixed http methods
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-inamdar committed Sep 27, 2018
1 parent 98b964a commit e1ff927
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Objects/Operation.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ class Operation extends BaseObject
const GET = 'get';
const PUT = 'put';
const POST = 'post';
const DELETE = 'options';
const DELETE = 'delete';
const OPTIONS = 'options';
const HEAD = 'head';
const PATCH = 'patch';

Expand Down

0 comments on commit e1ff927

Please sign in to comment.