Middleware to ensure your http handler is called with the specific http method.

export default chain() .then(add(requireHttpMethod("post"))) .then(send())

Migrated from folder: http/middleware/HttpMiddlewareRequireHttpMethod