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
3namespace CirrusSearch\MetaStore;
4
5/**
6 * A component of the metastore index.
7 */
8interface MetaStore {
9
10    /**
11     * @return array the mapping
12     */
13    public function buildIndexProperties();
14}