14 lines
287 B
PHP
14 lines
287 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\ReviewPublicationResolution;
|
|
|
|
enum ResolutionProofUsability: string
|
|
{
|
|
case Usable = 'usable';
|
|
case UsableWithWarning = 'usable_with_warning';
|
|
case NotUsable = 'not_usable';
|
|
case InspectionOnly = 'inspection_only';
|
|
}
|