1 | <?php |
||
20 | class SignalsMeta extends Meta |
||
21 | { |
||
22 | |||
23 | /** |
||
24 | * Create instance of Metadata specifically designed for Signals |
||
25 | * @param string|object|AnnotatedInterface $model |
||
26 | * @param MetaOptions $options |
||
27 | * @return static |
||
28 | */ |
||
29 | public static function create($model, 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 | public function type() |
||
56 | |||
57 | } |
||
58 |