PHP Classes

File: src/Enums/Transporter/Method.php

Recommend this page to a friend!
  Classes of Daniel Mullin   PHP Bookwhen API   src/Enums/Transporter/Method.php   Download  
File: src/Enums/Transporter/Method.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Bookwhen API
Access booking information using the BookWhen API
Author: By
Last change:
Date: 1 year ago
Size: 221 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
InShore\Bookwhen\Enums\Transporter;

/**
 * @internal
 */
enum Method: string
{
    case
GET = 'GET';
    case
POST = 'POST';
    case
PUT = 'PUT';
    case
DELETE = 'DELETE';
}