File "RequestMethod.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/apimatic/core-interfaces/src/Core/Request/RequestMethod.php
File size: 284 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace WPForms\Vendor\CoreInterfaces\Core\Request;

interface RequestMethod
{
    public const GET = "Get";
    public const POST = "Post";
    public const PUT = "Put";
    public const PATCH = "Patch";
    public const DELETE = "Delete";
    public const HEAD = "Head";
}