13 lines
198 B
PHP
13 lines
198 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Archive\Archived;
|
|
|
|
enum CacheComplexity: string
|
|
{
|
|
case LOW = 'low';
|
|
case MEDIUM = 'medium';
|
|
case HIGH = 'high';
|
|
case EXTREME = 'extreme';
|
|
}
|