Completed
Branch feature/pre-split (7f7f80)
by Anton
05:56
created
source/Spiral/ORM/Entities/Loaders/RelationLoader.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
      */
230 230
     protected function localKey($key): string
231 231
     {
232
-        return $this->getAlias() . '.' . $this->schema[$key];
232
+        return $this->getAlias().'.'.$this->schema[$key];
233 233
     }
234 234
 
235 235
     /**
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
      */
242 242
     protected function parentKey($key): string
243 243
     {
244
-        return $this->parent->getAlias() . '.' . $this->schema[$key];
244
+        return $this->parent->getAlias().'.'.$this->schema[$key];
245 245
     }
246 246
 
247 247
     /**
@@ -255,10 +255,10 @@  discard block
 block discarded – undo
255 255
         if (empty($this->options['alias'])) {
256 256
             if ($this->isLoaded() && $this->isJoined()) {
257 257
                 //Let's create unique alias, we are able to do that for relations just loaded
258
-                $this->options['alias'] = 'd' . decoct(++self::$countLevels);
258
+                $this->options['alias'] = 'd'.decoct(++self::$countLevels);
259 259
             } else {
260 260
                 //Let's use parent alias to continue chain
261
-                $this->options['alias'] = $parent->getAlias() . '_' . $this->relation;
261
+                $this->options['alias'] = $parent->getAlias().'_'.$this->relation;
262 262
 
263 263
             }
264 264
         }
Please login to merge, or discard this patch.
source/Spiral/ORM/Entities/Loaders/Traits/ColumnsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
             if ($minify) {
39 39
                 //Let's use column number instead of full name
40
-                $column = 'c' . count($columns);
40
+                $column = 'c'.count($columns);
41 41
             }
42 42
 
43 43
             $columns[] = "{$alias}.{$name} AS {$prefix}{$column}";
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/Postgres/PostgresDriver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -115,14 +115,14 @@  discard block
 block discarded – undo
115 115
     public function getPrimary(string $prefix, string $table): string
116 116
     {
117 117
         if (!empty($this->memory) && empty($this->primaryKeys)) {
118
-            $this->primaryKeys = (array)$this->memory->loadData($this->getSource() . '.keys');
118
+            $this->primaryKeys = (array)$this->memory->loadData($this->getSource().'.keys');
119 119
         }
120 120
 
121 121
         if (!empty($this->primaryKeys) && array_key_exists($table, $this->primaryKeys)) {
122 122
             return $this->primaryKeys[$table];
123 123
         }
124 124
 
125
-        if (!$this->hasTable($prefix . $table)) {
125
+        if (!$this->hasTable($prefix.$table)) {
126 126
             throw new DriverException(
127 127
                 "Unable to fetch table primary key, no such table '{$prefix}{$table}' exists"
128 128
             );
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 
139 139
         //Caching
140 140
         if (!empty($this->memory)) {
141
-            $this->memory->saveData($this->getSource() . '.keys', $this->primaryKeys);
141
+            $this->memory->saveData($this->getSource().'.keys', $this->primaryKeys);
142 142
         }
143 143
 
144 144
         return $this->primaryKeys[$table];
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     {
154 154
         return $this->container->make(
155 155
             PostgresInsertQuery::class,
156
-            ['driver' => $this, 'compiler' => $this->queryCompiler($prefix),] + $parameters
156
+            ['driver' => $this, 'compiler' => $this->queryCompiler($prefix), ] + $parameters
157 157
         );
158 158
     }
159 159
 
Please login to merge, or discard this patch.
source/Spiral/ODM/DocumentEntity.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
             return $helper->createAggregation($method);
250 250
         }
251 251
 
252
-        throw new DocumentException("Undefined method call '{$method}' in '" . get_called_class() . "'");
252
+        throw new DocumentException("Undefined method call '{$method}' in '".get_called_class()."'");
253 253
     }
254 254
 
255 255
     /**
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
             if ($value instanceof CompositableInterface) {
316 316
                 $atomics = array_merge_recursive(
317 317
                     $atomics,
318
-                    $value->buildAtomics((!empty($container) ? $container . '.' : '') . $field)
318
+                    $value->buildAtomics((!empty($container) ? $container.'.' : '').$field)
319 319
                 );
320 320
 
321 321
                 continue;
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 
331 331
             if (array_key_exists($field, $this->changes)) {
332 332
                 //Generating set operation for changed field
333
-                $atomics['$set'][(!empty($container) ? $container . '.' : '') . $field] = $value;
333
+                $atomics['$set'][(!empty($container) ? $container.'.' : '').$field] = $value;
334 334
             }
335 335
         }
336 336
 
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
     {
378 378
         $public = parent::publicFields();
379 379
 
380
-        array_walk_recursive($public, function (&$value) {
380
+        array_walk_recursive($public, function(&$value) {
381 381
             if ($value instanceof ObjectID) {
382 382
                 $value = (string)$value;
383 383
             }
Please login to merge, or discard this patch.
source/Spiral/ORM/Schemas/Relations/ManyToManySchema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -244,6 +244,6 @@
 block discarded – undo
244 244
         $names = [$source->getRole(), $target->getRole()];
245 245
         asort($names);
246 246
 
247
-        return implode('_', $names) . static::PIVOT_POSTFIX;
247
+        return implode('_', $names).static::PIVOT_POSTFIX;
248 248
     }
249 249
 }
250 250
\ No newline at end of file
Please login to merge, or discard this patch.
source/Spiral/ORM/Entities/Nodes/PivotedNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,6 +106,6 @@
 block discarded – undo
106 106
         $pivotData = $data[ORMInterface::PIVOT_DATA];
107 107
 
108 108
         //Unique row criteria
109
-        return $pivotData[$this->innerPivotKey] . '.' . $pivotData[$this->outerPivotKey];
109
+        return $pivotData[$this->innerPivotKey].'.'.$pivotData[$this->outerPivotKey];
110 110
     }
111 111
 }
112 112
\ No newline at end of file
Please login to merge, or discard this patch.
source/Spiral/ORM/Entities/Loaders/ManyToManyLoader.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,12 +47,12 @@  discard block
 block discarded – undo
47 47
         if ($this->isJoined()) {
48 48
             $query->join(
49 49
                 $this->getMethod() == self::LEFT_JOIN ? 'LEFT' : 'INNER',
50
-                $this->pivotTable() . ' AS ' . $this->pivotAlias(),
50
+                $this->pivotTable().' AS '.$this->pivotAlias(),
51 51
                 [$this->pivotKey(Record::THOUGHT_INNER_KEY) => $this->parentKey(Record::INNER_KEY)]
52 52
             );
53 53
         } else {
54 54
             $query->innerJoin(
55
-                $this->pivotTable() . ' AS ' . $this->pivotAlias(),
55
+                $this->pivotTable().' AS '.$this->pivotAlias(),
56 56
                 [$this->pivotKey(Record::THOUGHT_OUTER_KEY) => $this->localKey(Record::OUTER_KEY)]
57 57
             )->where(
58 58
                 $this->pivotKey(Record::THOUGHT_INNER_KEY),
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         if ($this->isJoined()) {
73 73
             $query->join(
74 74
                 $this->getMethod() == self::LEFT_JOIN ? 'LEFT' : 'INNER',
75
-                $this->getTable() . ' AS ' . $this->getAlias(),
75
+                $this->getTable().' AS '.$this->getAlias(),
76 76
                 [$this->localKey(Record::OUTER_KEY) => $this->pivotKey(Record::THOUGHT_OUTER_KEY)]
77 77
             );
78 78
         }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
             if ($minify) {
112 112
                 //Let's use column number instead of full name
113
-                $column = 'p_c' . count($columns);
113
+                $column = 'p_c'.count($columns);
114 114
             }
115 115
 
116 116
             $columns[] = "{$alias}.{$name} AS {$prefix}{$column}";
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
             return $this->options['pivotAlias'];
160 160
         }
161 161
 
162
-        return $this->getAlias() . '_pivot';
162
+        return $this->getAlias().'_pivot';
163 163
     }
164 164
 
165 165
     /**
@@ -185,6 +185,6 @@  discard block
 block discarded – undo
185 185
             return null;
186 186
         }
187 187
 
188
-        return $this->pivotAlias() . '.' . $this->schema[$key];
188
+        return $this->pivotAlias().'.'.$this->schema[$key];
189 189
     }
190 190
 }
191 191
\ No newline at end of file
Please login to merge, or discard this patch.
source/Spiral/ORM/Entities/Loaders/RootLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
             return null;
84 84
         }
85 85
 
86
-        return $this->getAlias() . '.' . $primaryKeys[0];
86
+        return $this->getAlias().'.'.$primaryKeys[0];
87 87
     }
88 88
 
89 89
     /**
Please login to merge, or discard this patch.
source/Spiral/Core/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -424,7 +424,7 @@
 block discarded – undo
424 424
 
425 425
         if (!$injector instanceof InjectorInterface) {
426 426
             throw new InjectionException(
427
-                "Class '" . get_class($injector) . "' must be an instance of InjectorInterface for '{$reflection->getName()}'"
427
+                "Class '".get_class($injector)."' must be an instance of InjectorInterface for '{$reflection->getName()}'"
428 428
             );
429 429
         }
430 430
 
Please login to merge, or discard this patch.