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