| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 30 | #[Attribute(Attribute::TARGET_PROPERTY)] |
||
| 31 | final class Alias |
||
| 32 | { |
||
| 33 | |||
| 34 | /** |
||
| 35 | * The attribute value |
||
| 36 | * |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | public $value; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Constructor of the class |
||
| 43 | * |
||
| 44 | * @param string $value |
||
| 45 | */ |
||
| 46 | 2 | public function __construct(string $value) |
|
| 51 |