Completed
Push — master ( 79d24d...6a0697 )
by Johannes
32s
created
src/Metadata/Cache/PsrCacheAdapter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function loadClassMetadataFromCache(\ReflectionClass $class)
24 24
     {
25
-        $this->lastItem = $this->pool->getItem(strtr($this->prefix . $class->name, '\\', '.'));
25
+        $this->lastItem = $this->pool->getItem(strtr($this->prefix.$class->name, '\\', '.'));
26 26
 
27 27
         return $this->lastItem->get();
28 28
     }
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function putClassMetadataInCache(ClassMetadata $metadata)
34 34
     {
35
-        $key = strtr($this->prefix . $metadata->name, '\\', '.');
35
+        $key = strtr($this->prefix.$metadata->name, '\\', '.');
36 36
 
37 37
         if (null === $this->lastItem || $this->lastItem->getKey() !== $key) {
38 38
             $this->lastItem = $this->pool->getItem($key);
@@ -46,6 +46,6 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function evictClassMetadataFromCache(\ReflectionClass $class)
48 48
     {
49
-        $this->pool->deleteItem(strtr($this->prefix . $class->name, '\\', '.'));
49
+        $this->pool->deleteItem(strtr($this->prefix.$class->name, '\\', '.'));
50 50
     }
51 51
 }
Please login to merge, or discard this patch.