1 | <?php |
||
38 | class Introduce extends ReflectionAnnotation |
||
39 | { |
||
40 | /** |
||
41 | * The annotation which identifies this annotation class |
||
42 | * |
||
43 | * @var string |
||
44 | */ |
||
45 | const ANNOTATION = 'Introduce'; |
||
46 | |||
47 | /** |
||
48 | * This method returns the class name as a string |
||
49 | * |
||
50 | * @return string |
||
51 | */ |
||
52 | public static function __getClass() |
||
56 | |||
57 | /** |
||
58 | * Returns the value of the interface attribute. |
||
59 | * |
||
60 | * @return string The annotations interface attribute |
||
61 | */ |
||
62 | 1 | public function getInterface() |
|
66 | |||
67 | /** |
||
68 | * Returns the value of the implementation attribute. |
||
69 | * |
||
70 | * @return string The annotations implementation attribute |
||
71 | */ |
||
72 | 1 | public function getImplementation() |
|
76 | } |
||
77 |