1 | <?php |
||
19 | class SignalsMeta extends Meta |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * Create instance of Metadata specifically designed for Manganel |
||
24 | * @param AnnotatedInterface $component |
||
25 | * @param MetaOptions $options |
||
26 | * @return static |
||
27 | */ |
||
28 | public static function create(AnnotatedInterface $component, MetaOptions $options = null) |
||
36 | |||
37 | /** |
||
38 | * Get field by name |
||
39 | * @param string $name |
||
40 | * @return DocumentPropertyMeta |
||
41 | */ |
||
42 | public function field($name) |
||
46 | |||
47 | /** |
||
48 | * Get document type meta |
||
49 | * @return DocumentTypeMeta |
||
50 | */ |
||
51 | public function type() |
||
55 | |||
56 | } |
||
57 |