Passed
Push — feature/configure_company ( 38f251...beaed8 )
by Laurent
02:53
created
src/Infrastructure/DoctrineMigrations/Version20201216205143.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
     {
31 31
         // this up() migration is auto-generated, please modify it to your needs
32 32
         $this->addSql(
33
-            'ALTER TABLE company ' .
34
-            'ADD zip_code VARCHAR(255) NOT NULL, ' .
35
-            'ADD town VARCHAR(255) NOT NULL, ' .
33
+            'ALTER TABLE company '.
34
+            'ADD zip_code VARCHAR(255) NOT NULL, '.
35
+            'ADD town VARCHAR(255) NOT NULL, '.
36 36
             'ADD country VARCHAR(255) NOT NULL'
37 37
         );
38 38
     }
Please login to merge, or discard this patch.
src/Domain/Common/Model/VO/ContactAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
     public function getValue(): string
53 53
     {
54
-        return $this->address . "\n" . $this->zipCode . ' ' . $this->town . ', ' . $this->country;
54
+        return $this->address."\n".$this->zipCode.' '.$this->town.', '.$this->country;
55 55
     }
56 56
 
57 57
     public function address(): string
Please login to merge, or discard this patch.