Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class ThemeName |
||
11 | { |
||
12 | /** @var string[] */ |
||
13 | private static $validNames = ['phuml', 'php', 'classic']; |
||
14 | |||
15 | /** @var string */ |
||
16 | private $name; |
||
17 | |||
18 | 48 | public static function from(string $text): ThemeName |
|
21 | } |
||
22 | |||
23 | 33 | public function name(): string |
|
26 | } |
||
27 | |||
28 | 48 | private function __construct(string $name) |
|
36 |