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