1 | <?php |
||
15 | class StorageMetadata implements StorageLayerInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | public $index; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $type; |
||
26 | |||
27 | /** |
||
28 | * Returns the client key for this search metadata. |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getKey() |
||
36 | |||
37 | /** |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | public function merge(MergeableInterface $metadata) |
||
44 | } |
||
45 |