Files
animethemes-server/app/Enums/Http/StreamingMethod.php
T

12 lines
151 B
PHP

<?php
declare(strict_types=1);
namespace App\Enums\Http;
enum StreamingMethod: string
{
case NGINX = 'nginx';
case RESPONSE = 'response';
}