| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 1 | public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null) |
|
| 24 | { |
||
| 25 | 1 | $entityManager = $container->get('doctrine.entitymanager.' . $this->getName()); |
|
| 26 | |||
| 27 | 1 | $annotationBuilder = new AnnotationBuilder($entityManager); |
|
| 28 | 1 | $annotationBuilder->setFormFactory($this->getFormFactory($container)); |
|
| 29 | |||
| 30 | 1 | return $annotationBuilder; |
|
| 31 | } |
||
| 32 | |||
| 61 |