Completed
Push — master ( b13107...84196b )
by Anton
04:37
created
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/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/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/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.
source/Spiral/Models/Prototypes/AbstractEntity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -426,7 +426,7 @@
 block discarded – undo
426 426
     ): AccessorInterface {
427 427
         if (!is_string($accessor) || !class_exists($accessor)) {
428 428
             throw new EntityException(
429
-                "Unable to create accessor for field {$name} in " . static::class
429
+                "Unable to create accessor for field {$name} in ".static::class
430 430
             );
431 431
         }
432 432
 
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
         $args[0] = $this->prepare($args[0]);
130 130
 
131 131
         //Routing where
132
-        call_user_func_array([$this->query, 'and' . ucfirst($this->target)], $args);
132
+        call_user_func_array([$this->query, 'and'.ucfirst($this->target)], $args);
133 133
 
134 134
         return $this;
135 135
     }
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
         $args[0] = $this->prepare($args[0]);
159 159
 
160 160
         //Routing where
161
-        call_user_func_array([$this->query, 'or' . ucfirst($this->target)], $args);
161
+        call_user_func_array([$this->query, 'or'.ucfirst($this->target)], $args);
162 162
 
163 163
         return $this;
164 164
     }
Please login to merge, or discard this patch.
source/Spiral/ODM/Entities/DocumentCompositor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      * @param bool $changedEntities Reference, will be set to true if any of entities changed
260 260
      *                              internally.
261 261
      */
262
-    public function hasChanges(bool &$changedEntities = null): bool
262
+    public function hasChanges(bool & $changedEntities = null): bool
263 263
     {
264 264
         foreach ($this->entities as $entity) {
265 265
             if ($entity->hasChanges()) {
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
 
327 327
             $atomics = array_merge(
328 328
                 $atomics,
329
-                $entity->buildAtomics((!empty($container) ? $container . '.' : '') . $offset)
329
+                $entity->buildAtomics((!empty($container) ? $container.'.' : '').$offset)
330 330
             );
331 331
         }
332 332
 
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
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      */
79 79
     public function primaryKey(): string
80 80
     {
81
-        return $this->getAlias() . '.' . $this->schema[Record::SH_PRIMARY_KEY];
81
+        return $this->getAlias().'.'.$this->schema[Record::SH_PRIMARY_KEY];
82 82
     }
83 83
 
84 84
     /**
Please login to merge, or discard this patch.