Completed
Branch feature/split-orm (60a911)
by Anton
03:15
created
source/Spiral/Security/Traits/GuardedTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
     {
90 90
         if (defined('self::GUARD_NAMESPACE')) {
91 91
             //Yay! Isolation
92
-            $permission = constant(get_called_class() . '::' . 'GUARD_NAMESPACE') . '.' . $permission;
92
+            $permission = constant(get_called_class().'::'.'GUARD_NAMESPACE').'.'.$permission;
93 93
         }
94 94
 
95 95
         return $permission;
Please login to merge, or discard this patch.
source/Spiral/Database/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/ODM/Schemas/DocumentSchema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
             if (
242 242
                 is_array($type)
243 243
                 && is_scalar($type[0])
244
-                && $filter = $this->mutators->getMutators('array::' . $type[0])
244
+                && $filter = $this->mutators->getMutators('array::'.$type[0])
245 245
             ) {
246 246
                 //Mutator associated to array with specified type
247 247
                 $resolved += $filter;
Please login to merge, or discard this patch.