Completed
Pull Request — master (#5964)
by Marco
65:20
created
lib/Doctrine/ORM/Tools/Console/Command/DeadEntitiesCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -123,10 +123,10 @@
 block discarded – undo
123 123
 
124 124
     private function findMissingEntities($entity, $output) {
125 125
         $dql = "SELECT _inner, _outer\n"
126
-              ."  FROM ".$entity['sourceEntity']." _inner\n"
127
-              ."  LEFT JOIN ".$entity['targetEntity']." _outer"
128
-              .$this->with($entity)
129
-              .$this->where($entity);
126
+                ."  FROM ".$entity['sourceEntity']." _inner\n"
127
+                ."  LEFT JOIN ".$entity['targetEntity']." _outer"
128
+                .$this->with($entity)
129
+                .$this->where($entity);
130 130
         
131 131
         $entityManager = $this->getHelper('em')->getEntityManager();
132 132
         try {
Please login to merge, or discard this patch.