GOOD SHELL MAS BOY
Server: Apache/2.4.52 (Ubuntu)
System: Linux vmi1836763.contaboserver.net 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64
User: www-data (33)
PHP: 8.4.10
Disabled: NONE
Upload Files
File: /var/www/admin.fixgini.com/vendor/cloudinary/cloudinary_php/src/Api/Utils/HttpMethod.php
<?php
/**
 * This file is part of the Cloudinary PHP package.
 *
 * (c) Cloudinary
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Cloudinary\Api;

/**
 * Class HttpMethod
 *
 * HTTP request methods
 */
abstract class HttpMethod
{
    /**
     * @var string The GET method requests a representation of the specified resource.
     *             Requests using GET should only retrieve data.
     */
    const GET = 'GET';
    /**
     * @var string The HEAD method asks for a response identical to that of a GET request,
     *             but without the response body.
     */
    const HEAD = 'HEAD';
    /**
     * @var string  The POST method is used to submit an entity to the specified resource, often causing a change in
     *              state or side effects on the server.
     */
    const POST = 'POST';
    /**
     * @var string The PUT method replaces all current representations of the target resource with the request payload.
     */
    const PUT = 'PUT';
    /**
     * @var string The DELETE method deletes the specified resource.
     */
    const DELETE = 'DELETE';
    /**
     * @var string The CONNECT method establishes a tunnel to the server identified by the target resource.
     */
    const CONNECT = 'CONNECT';
    /**
     * @var string The OPTIONS method is used to describe the communication options for the target resource.
     */
    const OPTIONS = 'OPTIONS';
    /**
     * @var string The TRACE method performs a message loop-back test along the path to the target resource.
     */
    const TRACE = 'TRACE';
    /**
     * @var string The PATCH method is used to apply partial modifications to a resource.
     */
    const PATCH = 'PATCH';
}