@@ -63,7 +63,7 @@ |
||
| 63 | 63 | /** |
| 64 | 64 | * @param HelperSet $helperSet |
| 65 | 65 | * |
| 66 | - * @return array |
|
| 66 | + * @return \Symfony\Component\Console\Command\Command[] |
|
| 67 | 67 | */ |
| 68 | 68 | public function getConsoleCommands(HelperSet $helperSet) { |
| 69 | 69 | $configuration = new Configuration($this->em->getConnection()); |
@@ -23,8 +23,8 @@ |
||
| 23 | 23 | public function initialize(IContainer $container) { |
| 24 | 24 | $container->set(IDoctrineConfig::class, DoctrineConfig::class); |
| 25 | 25 | $container->set( |
| 26 | - [EntityManager::class, ObjectManager::class, EntityManagerInterface::class], |
|
| 27 | - [$this, 'createEntityManager'] |
|
| 26 | + [ EntityManager::class, ObjectManager::class, EntityManagerInterface::class ], |
|
| 27 | + [ $this, 'createEntityManager' ] |
|
| 28 | 28 | )->singleton(); |
| 29 | 29 | } |
| 30 | 30 | |