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