Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class EmbeddedValueGeneratorExecutor implements ValueGenerationExecutor |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | public function execute(EntityManagerInterface $entityManager, object $entity) : array |
||
16 | { |
||
17 | // value set by inverse side |
||
18 | return []; |
||
19 | } |
||
20 | |||
21 | public function isDeferred() : bool |
||
24 | } |
||
25 | } |
||
26 |