Completed
Branch feature/pre-split (af267a)
by Anton
03:41
created
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/ORM/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/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.