. * * * The author of this software is Mashape, Inc. * For any question or feedback please contact us at: support@mashape.com * */ class HttpMethod { const DELETE = "DELETE"; const GET = "GET"; const POST = "POST"; const PUT = "PUT"; const PATCH = "PATCH"; } ?>