Passed
Push — master ( 00c044...5a9be5 )
by Michael
02:49
created
src/Mapper/Definition/AnnotationDefinitionProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         $relationship = new Relationship($name, $type);
74 74
 
75 75
         $getter = ($annotation->getter === null)
76
-            ? ('get' . ucfirst($name))
76
+            ? ('get'.ucfirst($name))
77 77
             : $annotation->getter;
78 78
 
79 79
         $relationship->setGetter($getter);
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         }
102 102
 
103 103
         if ($annotation->idProperty !== null) {
104
-            $getter = 'get' . ucfirst($annotation->idProperty);
104
+            $getter = 'get'.ucfirst($annotation->idProperty);
105 105
 
106 106
             $relationship->setIdentifierGetter($getter);
107 107
             return;
Please login to merge, or discard this patch.