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 ReflectionClass; |
5 | |
6 | interface StorageClassInstantiatorInterface extends StorageDtoInterface |
7 | { |
8 | /** |
9 | * @param ReflectionClass<object> $class |
10 | */ |
11 | public function createDomainObject(ReflectionClass $class): object; |
12 | } |