1 | <?php |
||
2 | |||
3 | /** |
||
4 | * It's free open-source software released under the MIT License. |
||
5 | * |
||
6 | * @author Anatoly Nekhay <[email protected]> |
||
7 | * @copyright Copyright (c) 2021, Anatoly Nekhay |
||
8 | * @license https://github.com/sunrise-php/hydrator/blob/master/LICENSE |
||
9 | * @link https://github.com/sunrise-php/hydrator |
||
10 | */ |
||
11 | |||
12 | declare(strict_types=1); |
||
13 | |||
14 | namespace Sunrise\Hydrator\Annotation; |
||
15 | |||
16 | use Attribute; |
||
17 | |||
18 | /** |
||
19 | * @Annotation |
||
20 | * @Target({"PROPERTY"}) |
||
21 | * @NamedArgumentConstructor |
||
22 | * |
||
23 | * @Attributes({ |
||
24 | * @Attribute("value", type="array", required=true), |
||
25 | * }) |
||
26 | * |
||
27 | * @since 3.2.0 |
||
28 | */ |
||
29 | #[Attribute(Attribute::TARGET_PROPERTY | Attribute::TARGET_PARAMETER)] |
||
30 | final class Context |
||
31 | { |
||
32 | /** |
||
33 | * @var array<non-empty-string, mixed> |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
34 | * |
||
35 | * @readonly |
||
36 | */ |
||
37 | public array $value; |
||
38 | |||
39 | /** |
||
40 | * @param array<non-empty-string, mixed> $value |
||
0 ignored issues
–
show
|
|||
41 | */ |
||
42 | public function __construct(array $value) |
||
43 | { |
||
44 | $this->value = $value; |
||
45 | } |
||
46 | } |
||
47 |