@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | $this->prefix = $prefix; |
102 | 102 | |
103 | 103 | //Initializing states |
104 | - $this->initialState = new TableState($this->prefix . $name); |
|
104 | + $this->initialState = new TableState($this->prefix.$name); |
|
105 | 105 | $this->exists = $this->driver->hasTable($this->initialState->getName()); |
106 | 106 | |
107 | 107 | if ($this->exists) { |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | */ |
150 | 150 | public function setName(string $name): string |
151 | 151 | { |
152 | - $this->currentState->setName($this->prefix . $name); |
|
152 | + $this->currentState->setName($this->prefix.$name); |
|
153 | 153 | |
154 | 154 | return $this->getName(); |
155 | 155 | } |