Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace CirrusSearch\MetaStore; |
| 4 | |
| 5 | /** |
| 6 | * A component of the metastore index. |
| 7 | */ |
| 8 | interface MetaStore { |
| 9 | |
| 10 | /** |
| 11 | * @return array the mapping |
| 12 | */ |
| 13 | public function buildIndexProperties(); |
| 14 | } |