Passed
Push — master ( d4ca25...19a485 )
by Michael
03:08
created
src/Mapper/Handler/TypeHandler/ClassBasedTypeHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     {
52 52
         $class = get_class($object);
53 53
 
54
-        if (! isset($this->resolvedCache[$class])) {
54
+        if (!isset($this->resolvedCache[$class])) {
55 55
             $this->resolvedCache[$class] = $this->resolveType($class);
56 56
         }
57 57
 
Please login to merge, or discard this patch.
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.