Completed
Branch feature/pre-split (548a16)
by Anton
03:55
created
source/Spiral/Database/Drivers/SQLServer/SQLServerDriver.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     public function identifier(string $identifier): string
69 69
     {
70
-        return $identifier == '*' ? '*' : '[' . str_replace('[', '[[', $identifier) . ']';
70
+        return $identifier == '*' ? '*' : '['.str_replace('[', '[[', $identifier).']';
71 71
     }
72 72
 
73 73
     /**
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             $this->logger()->info("Transaction: new savepoint 'SVP{$name}'");
126 126
         }
127 127
 
128
-        $this->statement('SAVE TRANSACTION ' . $this->identifier("SVP{$name}"));
128
+        $this->statement('SAVE TRANSACTION '.$this->identifier("SVP{$name}"));
129 129
     }
130 130
 
131 131
     /**
@@ -158,6 +158,6 @@  discard block
 block discarded – undo
158 158
         if ($this->isProfiling()) {
159 159
             $this->logger()->info("Transaction: rollback savepoint 'SVP{$name}'");
160 160
         }
161
-        $this->statement('ROLLBACK TRANSACTION ' . $this->identifier("SVP{$name}"));
161
+        $this->statement('ROLLBACK TRANSACTION '.$this->identifier("SVP{$name}"));
162 162
     }
163 163
 }
164 164
\ No newline at end of file
Please login to merge, or discard this patch.
source/Spiral/ORM/Helpers/WhereDecorator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         $arguments[0] = $this->prepare($arguments[0]);
130 130
 
131 131
         //Routing where
132
-        call_user_func_array([$this->query, 'and' . ucfirst($this->target)], $arguments);
132
+        call_user_func_array([$this->query, 'and'.ucfirst($this->target)], $arguments);
133 133
 
134 134
         return $this;
135 135
     }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         $arguments[0] = $this->prepare($arguments[0]);
160 160
 
161 161
         //Routing where
162
-        call_user_func_array([$this->query, 'or' . ucfirst($this->target)], $arguments);
162
+        call_user_func_array([$this->query, 'or'.ucfirst($this->target)], $arguments);
163 163
 
164 164
         return $this;
165 165
     }
Please login to merge, or discard this patch.