| Total Complexity | 4 | 
| Total Lines | 37 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); | ||
| 5 | class Alias | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * @var string | ||
| 9 | */ | ||
| 10 | private $value; | ||
| 11 | |||
| 12 | /** | ||
| 13 | * @param string $value | ||
| 14 | */ | ||
| 15 | public function __construct(string $value) | ||
| 25 | } | ||
| 26 | |||
| 27 | /** | ||
| 28 | * @return string | ||
| 29 | */ | ||
| 30 | public function toNative(): string | ||
| 33 | } | ||
| 34 | |||
| 35 | /** | ||
| 36 | * @param Alias $aliasString | ||
| 37 | * @return bool | ||
| 38 | */ | ||
| 39 | public function equals(Alias $aliasString): bool | ||
| 44 |