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