Skip to content

Commit

Permalink
allow post data with delete request
Browse files Browse the repository at this point in the history
  • Loading branch information
anlutro committed Jun 7, 2017
1 parent e65f127 commit f03c239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Request.php
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ class Request
'post' => true,
'put' => true,
'patch' => true,
'delete' => false,
'delete' => true,
'options' => false,
);

1 comment on commit f03c239

@sharmavikram
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for changing the delete flag.

Please sign in to comment.