mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-04-25 16:15:23 -05:00
17 lines
367 B
PHP
17 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Enums\Game;
|
|
|
|
enum PlayerReportReason: string
|
|
{
|
|
case Other = 'other';
|
|
case DevImpersonation = 'PlayerDevImpersonation';
|
|
case InappropriateName = 'InappropriateNameLanguage';
|
|
|
|
case hackingExploiting = 'HackingExploiting';
|
|
|
|
case Griefing = 'GriefingToxicBehavior';
|
|
|
|
case LeavingGameHarrasment = 'LeavingGameAFKHarassment';
|
|
|
|
} |