Passed
Push — master ( 5a9be5...a2cf38 )
by Michael
02:34
created
src/Mapper/Definition/AnnotationDefinitionProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     {
93 93
         if ($annotation->getter === null) {
94 94
             $name   = $relationship->getName();
95
-            $getter = 'get' . ucfirst($name);
95
+            $getter = 'get'.ucfirst($name);
96 96
 
97 97
             $relationship->setGetter($getter);
98 98
             return;
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         }
116 116
 
117 117
         if ($annotation->idProperty !== null) {
118
-            $getter = 'get' . ucfirst($annotation->idProperty);
118
+            $getter = 'get'.ucfirst($annotation->idProperty);
119 119
 
120 120
             $relationship->setIdentifierGetter($getter);
121 121
             return;
Please login to merge, or discard this patch.