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