Files
animethemes-server/app/Enums/Http/StreamingMethod.php
T
paranarimasu 6015dcbbbf refactor: migration from laravel-enum package to native php enums (#585)
* refactor: migration from laravel-enum package to native php enums

* style: fix StyleCI findings
2023-06-09 14:29:10 -05:00

15 lines
184 B
PHP

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