Completed
Branch feature/pre-split (58adfb)
by Anton
08:24
created
source/Spiral/Database/Entities/Schemas/AbstractReference.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      */
163 163
     public function references($table, $column = 'id')
164 164
     {
165
-        $this->foreignTable = $this->table->getPrefix() . $table;
165
+        $this->foreignTable = $this->table->getPrefix().$table;
166 166
         $this->foreignKey = $column;
167 167
 
168 168
         return $this;
@@ -206,10 +206,10 @@  discard block
 block discarded – undo
206 206
         $statement[] = 'CONSTRAINT';
207 207
         $statement[] = $this->getName(true);
208 208
         $statement[] = 'FOREIGN KEY';
209
-        $statement[] = '(' . $this->table->driver()->identifier($this->column) . ')';
209
+        $statement[] = '('.$this->table->driver()->identifier($this->column).')';
210 210
 
211
-        $statement[] = 'REFERENCES ' . $this->table->driver()->identifier($this->foreignTable);
212
-        $statement[] = '(' . $this->table->driver()->identifier($this->foreignKey) . ')';
211
+        $statement[] = 'REFERENCES '.$this->table->driver()->identifier($this->foreignTable);
212
+        $statement[] = '('.$this->table->driver()->identifier($this->foreignKey).')';
213 213
 
214 214
         $statement[] = "ON DELETE {$this->deleteRule}";
215 215
         $statement[] = "ON UPDATE {$this->updateRule}";
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      */
239 239
     protected function generateName()
240 240
     {
241
-        $name = $this->table->getName() . '_foreign_' . $this->column . '_' . uniqid();
241
+        $name = $this->table->getName().'_foreign_'.$this->column.'_'.uniqid();
242 242
 
243 243
         if (strlen($name) > 64) {
244 244
             //Many dbs has limitations on identifier length
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/MySQL/MySQLDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      */
58 58
     public function identifier($identifier)
59 59
     {
60
-        return $identifier == '*' ? '*' : '`' . str_replace('`', '``', $identifier) . '`';
60
+        return $identifier == '*' ? '*' : '`'.str_replace('`', '``', $identifier).'`';
61 61
     }
62 62
 
63 63
     /**
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/Postgres/PostgresDriver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     public function getPrimary($table)
118 118
     {
119 119
         if (!empty($this->memory) && empty($this->primaryKeys)) {
120
-            $this->primaryKeys = (array)$this->memory->loadData($this->getSource() . '-primary');
120
+            $this->primaryKeys = (array)$this->memory->loadData($this->getSource().'-primary');
121 121
         }
122 122
 
123 123
         if (!empty($this->primaryKeys) && array_key_exists($table, $this->primaryKeys)) {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 
141 141
         //Caching
142 142
         if (!empty($this->memory)) {
143
-            $this->memory->saveData($this->getSource() . '-primary', $this->primaryKeys);
143
+            $this->memory->saveData($this->getSource().'-primary', $this->primaryKeys);
144 144
         }
145 145
 
146 146
         return $this->primaryKeys[$table];
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/SQLServer/QueryCompiler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
         $offset = $offset + 1;
138 138
 
139 139
         if (!empty($limit)) {
140
-            $statement .= "BETWEEN {$offset} AND " . ($offset + $limit - 1);
140
+            $statement .= "BETWEEN {$offset} AND ".($offset + $limit - 1);
141 141
         } else {
142 142
             $statement .= ">= {$offset}";
143 143
         }
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/SQLServer/SQLServerDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      */
85 85
     public function identifier($identifier)
86 86
     {
87
-        return $identifier == '*' ? '*' : '[' . str_replace('[', '[[', $identifier) . ']';
87
+        return $identifier == '*' ? '*' : '['.str_replace('[', '[[', $identifier).']';
88 88
     }
89 89
 
90 90
     /**
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/SQLServer/Schemas/Commander.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         if ($column->getName() != $initial->getName()) {
67 67
             //Renaming is separate operation
68 68
             $this->run("sp_rename ?, ?, 'COLUMN'", [
69
-                $table->getName() . '.' . $initial->getName(),
69
+                $table->getName().'.'.$initial->getName(),
70 70
                 $column->getName()
71 71
             ]);
72 72
         }
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/SQLite/Schemas/ReferenceSchema.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
         $statement = [];
23 23
 
24 24
         $statement[] = 'FOREIGN KEY';
25
-        $statement[] = '(' . $this->table->driver()->identifier($this->column) . ')';
25
+        $statement[] = '('.$this->table->driver()->identifier($this->column).')';
26 26
 
27
-        $statement[] = 'REFERENCES ' . $this->table->driver()->identifier($this->foreignTable);
28
-        $statement[] = '(' . $this->table->driver()->identifier($this->foreignKey) . ')';
27
+        $statement[] = 'REFERENCES '.$this->table->driver()->identifier($this->foreignTable);
28
+        $statement[] = '('.$this->table->driver()->identifier($this->foreignKey).')';
29 29
 
30 30
         $statement[] = "ON DELETE {$this->deleteRule}";
31 31
         $statement[] = "ON UPDATE {$this->updateRule}";
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/SQLite/Schemas/TableSchema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
     {
164 164
         //Temporary table is required to copy data over
165 165
         $temporary = clone $this;
166
-        $temporary->setName('spiral_temp_' . $this->getName() . '_' . uniqid());
166
+        $temporary->setName('spiral_temp_'.$this->getName().'_'.uniqid());
167 167
 
168 168
         //We don't need any index in temporary table
169 169
         foreach ($temporary->getIndexes() as $index) {
Please login to merge, or discard this patch.
source/Spiral/Database/Injections/Parameter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     {
109 109
         if (is_array($this->value)) {
110 110
             //Array were mocked
111
-            return '(' . trim(str_repeat('?, ', count($this->value)), ', ') . ')';
111
+            return '('.trim(str_repeat('?, ', count($this->value)), ', ').')';
112 112
         }
113 113
 
114 114
         return '?';
Please login to merge, or discard this patch.