1 | <?php |
||
9 | class Initialize |
||
10 | { |
||
11 | /** |
||
12 | * The value the property should be initialized to. |
||
13 | * |
||
14 | * @var mixed |
||
15 | */ |
||
16 | private $value; |
||
17 | |||
18 | /** |
||
19 | * Initializes the annotation. |
||
20 | * |
||
21 | * @param mixed $value The annotation's parameters. |
||
22 | */ |
||
23 | 6 | public function __construct($value) |
|
27 | |||
28 | /** |
||
29 | * Get the value the property should be initialized to. |
||
30 | * |
||
31 | * @return mixed The value. |
||
32 | */ |
||
33 | 6 | public function getValue() |
|
37 | } |
||
38 |