Completed
Push — master ( ed12a7...bef77f )
by Anton
02:20
created
source/Spiral/ORM/Entities/Loaders/RootLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
      */
106 106
     public function primaryKey(): string
107 107
     {
108
-        return $this->getAlias() . '.' . $this->schema[Record::SH_PRIMARY_KEY];
108
+        return $this->getAlias().'.'.$this->schema[Record::SH_PRIMARY_KEY];
109 109
     }
110 110
 
111 111
     /**
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/Helpers/WhereDecorator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         $args[0] = $this->prepare($args[0]);
132 132
 
133 133
         //Routing where
134
-        call_user_func_array([$this->query, 'and' . ucfirst($this->target)], $args);
134
+        call_user_func_array([$this->query, 'and'.ucfirst($this->target)], $args);
135 135
 
136 136
         return $this;
137 137
     }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         $args[0] = $this->prepare($args[0]);
161 161
 
162 162
         //Routing where
163
-        call_user_func_array([$this->query, 'or' . ucfirst($this->target)], $args);
163
+        call_user_func_array([$this->query, 'or'.ucfirst($this->target)], $args);
164 164
 
165 165
         return $this;
166 166
     }
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
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
         $pivotData = $data[ORMInterface::PIVOT_DATA];
97 97
 
98 98
         //Unique row criteria
99
-        return $pivotData[$this->innerPivotKey] . '.' . $pivotData[$this->outerPivotKey];
99
+        return $pivotData[$this->innerPivotKey].'.'.$pivotData[$this->outerPivotKey];
100 100
     }
101 101
 
102 102
 }
103 103
\ No newline at end of file
Please login to merge, or discard this patch.