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\DoctrineEntityDatalayer\IndexStrategy; |
3 | |
4 | use Apie\Core\Entities\EntityInterface; |
5 | use Apie\StorageMetadataBuilder\Interfaces\HasIndexInterface; |
6 | |
7 | interface IndexStrategyInterface |
8 | { |
9 | public function updateIndex( |
10 | HasIndexInterface $doctrineEntity, |
11 | EntityInterface $entity |
12 | ): void; |
13 | } |