Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class FrameSymbol extends Symbol |
||
6 | { |
||
7 | 56 | public function __construct(protected string $string, private string $alias = '') |
|
8 | { |
||
9 | 56 | parent::__construct($string); |
|
10 | } |
||
11 | |||
12 | 9 | public function getAlias(): string |
|
13 | { |
||
14 | 9 | return $this->alias; |
|
15 | } |
||
16 | |||
17 | 2 | public function __toString(): string |
|
21 | } |
||
22 | } |
||
23 |