PHP Classes

File: src/Enums/Transporter/ContentType.php

Recommend this page to a friend!
  Classes of Daniel Mullin   PHP Bookwhen API   src/Enums/Transporter/ContentType.php   Download  
File: src/Enums/Transporter/ContentType.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: updated IDE
Date: 1 year ago
Size: 216 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
InShore\Bookwhen\Enums\Enums\Transporter;

/**
 * @internal
 */
enum ContentType: string
{
    case
JSON = 'application/json';
    case
MULTIPART = 'multipart/form-data';
}