Passed
Push — master ( 48050d...7a1811 )
by Michael
03:51
created
src/Mapper/Definition/CachedProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function getDefinition(string $class): Definition
56 56
     {
57
-        if (! isset($this->definitions[$class])) {
57
+        if (!isset($this->definitions[$class])) {
58 58
             $this->definitions[$class] = $this->provideDefinition($class);
59 59
         }
60 60
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function provideDefinition(string $class): Definition
71 71
     {
72
-        $key  = self::PREFIX . md5($class);
72
+        $key  = self::PREFIX.md5($class);
73 73
         $item = $this->cache->getItem($key);
74 74
 
75 75
         if ($item->isHit()) {
Please login to merge, or discard this patch.