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\Core\Datalayers;
3
4use Apie\Core\BoundedContext\BoundedContextId;
5use Apie\Core\Entities\EntityInterface;
6use Apie\Core\Identifiers\IdentifierInterface;
7use ReflectionClass;
8
9interface 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}