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\Datalayers\Lists\EntityListInterface;
6use Apie\Core\Entities\EntityInterface;
7use Apie\Core\Identifiers\IdentifierInterface;
8use ReflectionClass;
9
10interface ApieDatalayer
11{
12    /**
13     * @template T of EntityInterface
14     * @param ReflectionClass<T> $class
15     * @return EntityListInterface<T>
16     */
17    public function all(ReflectionClass $class, ?BoundedContextId $boundedContextId = null): EntityListInterface;
18
19    /**
20     * @template T of EntityInterface
21     * @param IdentifierInterface<T> $identifier
22     * @return T
23     */
24    public function find(IdentifierInterface $identifier, ?BoundedContextId $boundedContextId = null): EntityInterface;
25
26    /**
27     * @template T of EntityInterface
28     * @param T $entity
29     * @return T
30     */
31    public function persistNew(EntityInterface $entity, ?BoundedContextId $boundedContextId = null): EntityInterface;
32
33    /**
34     * @template T of EntityInterface
35     * @param T $entity
36     * @return T
37     */
38    public function persistExisting(EntityInterface $entity, ?BoundedContextId $boundedContextId = null): EntityInterface;
39
40    public function removeExisting(EntityInterface $entity, ?BoundedContextId $boundedContextId = null): void;
41
42    /**
43     * @template T of EntityInterface
44     * @param T $entity
45     * @return T
46     */
47    public function upsert(EntityInterface $entity, ?BoundedContextId $boundedContextId): EntityInterface;
48}