PHP Classes

File: src/Enums/Http/Method.php

Recommend this page to a friend!
  Classes of Nahid Bin Azhar   Google Generative AI   src/Enums/Http/Method.php   Download  
File: src/Enums/Http/Method.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Google Generative AI
Get answers to prompts using Google Gemini AI
Author: By
Last change:
Date: 5 days ago
Size: 311 bytes
 

Contents

Class file image Download
<?php

namespace Nahid\GoogleGenerativeAI\Enums\Http;

enum Method: string
{
    case
GET = 'GET';
    case
POST = 'POST';
    case
PUT = 'PUT';
    case
PATCH = 'PATCH';
    case
DELETE = 'DELETE';
    case
HEAD = 'HEAD';
    case
OPTIONS = 'OPTIONS';
    case
TRACE = 'TRACE';
    case
CONNECT = 'CONNECT';
}