mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 11:45:00 +02:00
* refactor: migration from laravel-enum package to native php enums * style: fix StyleCI findings
15 lines
183 B
PHP
15 lines
183 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums\Rules;
|
|
|
|
/**
|
|
* Enum ModerationService.
|
|
*/
|
|
enum ModerationService: string
|
|
{
|
|
case NONE = 'none';
|
|
case OPENAI = 'openai';
|
|
}
|