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