12 lines
212 B
PHP
12 lines
212 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Baselines\Compare;
|
|
|
|
enum StrategySelectionState: string
|
|
{
|
|
case Supported = 'supported';
|
|
case Unsupported = 'unsupported';
|
|
case Mixed = 'mixed';
|
|
} |