@@ -51,7 +51,7 @@ |
||
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 |
@@ -73,7 +73,7 @@ discard block |
||
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 |
||
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; |