| Total Complexity | 1 |
| Total Lines | 16 |
| 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 | * @var array<non-empty-string, mixed> |
||
|
|
|||
| 34 | * |
||
| 35 | * @readonly |
||
| 36 | */ |
||
| 37 | public array $value; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param array<non-empty-string, mixed> $value |
||
| 41 | */ |
||
| 42 | public function __construct(array $value) |
||
| 47 |