@@ -30,9 +30,9 @@ |
||
| 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 | } |
@@ -51,7 +51,7 @@ |
||
| 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 |