1 | <?php |
||
34 | class Inject extends ReflectionAnnotation |
||
35 | { |
||
36 | |||
37 | /** |
||
38 | * The annotation for a default timeout method. |
||
39 | * |
||
40 | * @var string |
||
41 | */ |
||
42 | const ANNOTATION = 'Inject'; |
||
43 | |||
44 | /** |
||
45 | * This method returns the class name as |
||
46 | * a string. |
||
47 | * |
||
48 | * @return string |
||
49 | */ |
||
50 | public static function __getClass() |
||
54 | |||
55 | /** |
||
56 | * Returns the value of the name attribute. |
||
57 | * |
||
58 | * @return string|null The annotations name attribute |
||
59 | */ |
||
60 | public function getName() |
||
66 | |||
67 | /** |
||
68 | * Returns the value of the bean name attribute. |
||
69 | * |
||
70 | * @return string|null The annotations bean Name attribute |
||
71 | */ |
||
72 | public function getBeanName() |
||
78 | |||
79 | /** |
||
80 | * Returns the value of the description attribute. |
||
81 | * |
||
82 | * @return string|null The annotations description attribute |
||
83 | */ |
||
84 | public function getDescription() |
||
90 | |||
91 | /** |
||
92 | * Returns the value of the type attribute. |
||
93 | * |
||
94 | * @return string The annotations type attribute |
||
95 | */ |
||
96 | public function getType() |
||
102 | |||
103 | /** |
||
104 | * Returns the value of the factory attribute. |
||
105 | * |
||
106 | * @return string The annotations factory attribute |
||
107 | */ |
||
108 | public function getFactory() |
||
114 | } |
||
115 |