1 | <?php |
||
14 | final class Configuration implements ConfigurationInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var string[] |
||
18 | */ |
||
19 | private $defaultAutowireTypes = [ |
||
20 | 'Doctrine\ORM\EntityManager' => 'doctrine.orm.default_entity_manager', |
||
21 | 'Doctrine\ORM\EntityManagerInterface' => 'doctrine.orm.default_entity_manager', |
||
22 | 'Doctrine\Portability\Connection' => 'database_connection', |
||
23 | 'Symfony\Component\EventDispatcher\EventDispatcher' => 'event_dispatcher', |
||
24 | 'Symfony\Component\EventDispatcher\EventDispatcherInterface' => 'event_dispatcher', |
||
25 | 'Symfony\Component\Translation\TranslatorInterface' => 'translator', |
||
26 | ]; |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 5 | public function getConfigTreeBuilder() |
|
51 | } |
||
52 |