Passed
Pull Request — master (#6690)
by Bit
18:11
created
lib/Doctrine/ORM/Tools/ToolsException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 {
32 32
     public static function schemaToolFailure(string $sql, Throwable $e) : self
33 33
     {
34
-        return new self("Schema-Tool failed with Error '" . $e->getMessage() . "' while executing DDL: " . $sql, "0", $e);
34
+        return new self("Schema-Tool failed with Error '".$e->getMessage()."' while executing DDL: ".$sql, "0", $e);
35 35
     }
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/Console/Command/EnsureProductionSettingsCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
                 $em->getConnection()->connect();
75 75
             }
76 76
         } catch (Throwable $e) {
77
-            $output->writeln('<error>' . $e->getMessage() . '</error>');
77
+            $output->writeln('<error>'.$e->getMessage().'</error>');
78 78
 
79 79
             return 1;
80 80
         }
Please login to merge, or discard this patch.