1 | <?php |
||
25 | class MetaMethod implements AnnotationEntityInterface |
||
26 | { |
||
27 | |||
28 | use \Maslosoft\Addendum\Traits\MetaState; |
||
29 | |||
30 | /** |
||
31 | * Name of method |
||
32 | * @var string |
||
33 | */ |
||
34 | public $name = ''; |
||
35 | |||
36 | /** |
||
37 | * Indicates if method is abstract |
||
38 | * @var bool |
||
39 | */ |
||
40 | public $isAbstract = false; |
||
41 | |||
42 | /** |
||
43 | * Indicates if method is static |
||
44 | * @var bool |
||
45 | */ |
||
46 | public $isStatic = false; |
||
47 | |||
48 | /** |
||
49 | * Class constructor, set some basic metadata |
||
50 | * @param ReflectionMethod $info |
||
51 | */ |
||
52 | 5 | public function __construct(ReflectionMethod $info = null) |
|
63 | |||
64 | public function __get($name) |
||
68 | |||
69 | } |
||
70 |