Completed
Push — master ( 342223...070a86 )
by Maxim
02:28
created
src/Weew/App/Doctrine/DoctrineConsoleRunner.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
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());
Please login to merge, or discard this patch.
src/Weew/App/Doctrine/DoctrineProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.