| 1 | <?php |
||
| 9 | class Construct |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The construct arguments. |
||
| 13 | * |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | private $arguments; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Initializes the annotation. |
||
| 20 | * @param array $arguments The construct arguments. |
||
| 21 | */ |
||
| 22 | 2 | public function __construct(array $arguments) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * Get the list of the construct arguments. |
||
| 29 | * |
||
| 30 | * @return array The list of arguments. |
||
| 31 | */ |
||
| 32 | 2 | public function getArguments() |
|
| 36 | } |
||
| 37 |