| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | #[Attribute(Attribute::TARGET_PROPERTY | Attribute::TARGET_PARAMETER)] |
||
| 30 | final class Context |
||
| 31 | { |
||
| 32 | |||
| 33 | /** |
||
| 34 | * The attribute value |
||
| 35 | * |
||
| 36 | * @var array<non-empty-string, mixed> |
||
|
|
|||
| 37 | * |
||
| 38 | * @readonly |
||
| 39 | */ |
||
| 40 | public array $value; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Constructor of the class |
||
| 44 | * |
||
| 45 | * @param array<non-empty-string, mixed> $value |
||
| 46 | */ |
||
| 47 | public function __construct(array $value) |
||
| 52 |