1 | <?php |
||
25 | class SignalsMeta extends Meta |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * Create instance of Metadata specifically designed for Signals |
||
30 | * @param string|object|AnnotatedInterface $model |
||
31 | * @param MetaOptions $options |
||
32 | * @return SignalsMeta |
||
33 | */ |
||
34 | public static function create($model, MetaOptions $options = null) |
||
44 | |||
45 | /** |
||
46 | * Get field by name |
||
47 | * @param string $name |
||
48 | * @return DocumentPropertyMeta |
||
49 | */ |
||
50 | public function field($name) |
||
56 | |||
57 | /** |
||
58 | * Get document type meta |
||
59 | * @return DocumentTypeMeta |
||
60 | */ |
||
61 | public function type() |
||
67 | |||
68 | } |
||
69 |