Completed
Branch feature/pre-split (f8e7b8)
by Anton
04:02
created
source/Spiral/Database/Schemas/Prototypes/AbstractTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.