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\StorageMetadata\Interfaces; |
3 | |
4 | use Apie\Core\Dto\DtoInterface; |
5 | use Apie\StorageMetadata\Mediators\DomainToStorageContext; |
6 | |
7 | interface PropertyConverterInterface extends DtoInterface |
8 | { |
9 | public function applyToDomain( |
10 | DomainToStorageContext $domainToStorageContext |
11 | ): void; |
12 | public function applyToStorage( |
13 | DomainToStorageContext $domainToStorageContext |
14 | ): void; |
15 | } |