14 lines
284 B
PHP
14 lines
284 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Ui\OperatorExplanation;
|
|
|
|
enum TrustworthinessLevel: string
|
|
{
|
|
case Trustworthy = 'trustworthy';
|
|
case LimitedConfidence = 'limited_confidence';
|
|
case DiagnosticOnly = 'diagnostic_only';
|
|
case Unusable = 'unusable';
|
|
}
|