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\Datalayers; |
| 3 | |
| 4 | use Apie\Core\BoundedContext\BoundedContextId; |
| 5 | use Apie\Core\Entities\EntityInterface; |
| 6 | use Apie\Core\Identifiers\IdentifierInterface; |
| 7 | use ReflectionClass; |
| 8 | |
| 9 | interface ApieDatalayerWithSupport extends ApieDatalayer |
| 10 | { |
| 11 | /** |
| 12 | * @param EntityInterface|IdentifierInterface<EntityInterface>|ReflectionClass<EntityInterface|IdentifierInterface<EntityInterface>> $instance |
| 13 | */ |
| 14 | public function isSupported( |
| 15 | EntityInterface|ReflectionClass|IdentifierInterface $instance, |
| 16 | BoundedContextId $boundedContextId |
| 17 | ): bool; |
| 18 | } |