Passed
Push — master ( 00c044...5a9be5 )
by Michael
02:49
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
@@ -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.