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 | namespace Apie\Core\Indexing; |
| 3 | |
| 4 | use Apie\Core\Context\ApieContext; |
| 5 | |
| 6 | interface IndexingStrategyInterface |
| 7 | { |
| 8 | public function support(object $object): bool; |
| 9 | |
| 10 | /** |
| 11 | * @return array<string, int> |
| 12 | */ |
| 13 | public function getIndexes(object $class, ApieContext $context, Indexer $indexer): array; |
| 14 | } |