Completed
Branch feature/pre-split (e31d0d)
by Anton
04:21
created
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.
source/Spiral/ORM/Schemas/Definitions/IndexDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      */
55 55
     public function getName(): string
56 56
     {
57
-        $name = ($this->isUnique() ? 'unique_' : 'index_') . join('_', $this->getColumns());
57
+        $name = ($this->isUnique() ? 'unique_' : 'index_').join('_', $this->getColumns());
58 58
 
59 59
         return strlen($name) > 64 ? md5($name) : $name;
60 60
     }
Please login to merge, or discard this patch.
source/Spiral/ORM/Schemas/RecordSchema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -276,7 +276,7 @@
 block discarded – undo
276 276
             if (!empty($filter = $this->mutatorsConfig->getMutators($column->abstractType()))) {
277 277
                 //Mutator associated with type directly
278 278
                 $resolved += $filter;
279
-            } elseif (!empty($filter = $this->mutatorsConfig->getMutators('php:' . $column->phpType()))) {
279
+            } elseif (!empty($filter = $this->mutatorsConfig->getMutators('php:'.$column->phpType()))) {
280 280
                 //Mutator associated with php type
281 281
                 $resolved += $filter;
282 282
             }
Please login to merge, or discard this patch.
source/Spiral/ORM/Entities/EntityCache.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             throw new CacheException('Entity cache size exceeded');
67 67
         }
68 68
 
69
-        return $this->entities[$class . '.' . $identity] = $entity;
69
+        return $this->entities[$class.'.'.$identity] = $entity;
70 70
     }
71 71
 
72 72
     /**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function forget(string $class, string $identity)
79 79
     {
80
-        unset($this->entities[$class . '.' . $identity]);
80
+        unset($this->entities[$class.'.'.$identity]);
81 81
     }
82 82
 
83 83
     /**
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function has(string $class, string $identity): bool
92 92
     {
93
-        return isset($this->entities[$class . '.' . $identity]);
93
+        return isset($this->entities[$class.'.'.$identity]);
94 94
     }
95 95
 
96 96
     /**
@@ -103,11 +103,11 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function get(string $class, string $identity)
105 105
     {
106
-        if (empty($this->entities[$class . '.' . $identity])) {
106
+        if (empty($this->entities[$class.'.'.$identity])) {
107 107
             return null;
108 108
         }
109 109
 
110
-        return $this->entities[$class . '.' . $identity];
110
+        return $this->entities[$class.'.'.$identity];
111 111
     }
112 112
 
113 113
     /**
Please login to merge, or discard this patch.
source/Spiral/ORM/Schemas/SchemaBuilder.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
         bool $unique = false,
219 219
         bool $resetState = false
220 220
     ): AbstractTable {
221
-        if (isset($this->tables[$database . '.' . $table])) {
222
-            $schema = $this->tables[$database . '.' . $table];
221
+        if (isset($this->tables[$database.'.'.$table])) {
222
+            $schema = $this->tables[$database.'.'.$table];
223 223
 
224 224
             if ($unique) {
225 225
                 throw new DoubleReferenceException(
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
         } else {
230 230
             //Requesting thought DatabaseManager
231 231
             $schema = $this->manager->database($database)->table($table)->getSchema();
232
-            $this->tables[$database . '.' . $table] = $schema;
232
+            $this->tables[$database.'.'.$table] = $schema;
233 233
         }
234 234
 
235 235
         $schema = clone $schema;
@@ -426,10 +426,10 @@  discard block
 block discarded – undo
426 426
         //We have to make sure that local table name is used
427 427
         $table = substr($schema->getName(), strlen($schema->getPrefix()));
428 428
 
429
-        if (empty($this->tables[$database . '.' . $table])) {
429
+        if (empty($this->tables[$database.'.'.$table])) {
430 430
             throw new SchemaException("AbstractTable must be requested before pushing back");
431 431
         }
432 432
 
433
-        $this->tables[$database . '.' . $table] = $schema;
433
+        $this->tables[$database.'.'.$table] = $schema;
434 434
     }
435 435
 }
436 436
\ No newline at end of file
Please login to merge, or discard this patch.
source/Spiral/ORM/Helpers/RelationOptions.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
         foreach ($aliases as $property => $alias) {
164 164
             if (isset($userOptions[$property])) {
165 165
                 //Let's create some default options based on user specified values
166
-                $proposed['option:' . $alias] = $userOptions[$property];
166
+                $proposed['option:'.$alias] = $userOptions[$property];
167 167
             }
168 168
         }
169 169
 
Please login to merge, or discard this patch.
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/Models/Prototypes/AbstractEntity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -453,7 +453,7 @@
 block discarded – undo
453 453
     ): AccessorInterface {
454 454
         if (!is_string($accessor) || !class_exists($accessor)) {
455 455
             throw new EntityException(
456
-                "Unable to create accessor for field {$field} in " . static::class
456
+                "Unable to create accessor for field {$field} in ".static::class
457 457
             );
458 458
         }
459 459
 
Please login to merge, or discard this patch.