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