Files

13 lines
256 B
PHP
Raw Permalink Normal View History

2026-08-29 15:53:53 +03:00
<?php
namespace App\Serp\Operations;
enum ActivationState: string
{
case Disabled = 'disabled';
case ValidationOnly = 'validation_only';
case Canary = 'canary';
case Enabled = 'enabled';
case EmergencyStopped = 'emergency_stopped';
}