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