@@ -185,10 +185,10 @@ discard block |
||
185 | 185 | { |
186 | 186 | $result = []; |
187 | 187 | foreach (['id', 'type'] as $key) { |
188 | - $getter = 'get' . ucfirst($key); |
|
188 | + $getter = 'get'.ucfirst($key); |
|
189 | 189 | $value = $identifier->$getter(); |
190 | 190 | if ($value === null || is_array($value) || (is_object($value) && !method_exists($value, '__toString'))) { |
191 | - throw new InvalidValueException("The value {$key} of resource object " . get_class($identifier) . ' MUST be a string.'); |
|
191 | + throw new InvalidValueException("The value {$key} of resource object ".get_class($identifier).' MUST be a string.'); |
|
192 | 192 | } |
193 | 193 | if ($key === 'type' && $this->pluralize) { |
194 | 194 | $value = Inflector::pluralize($value); |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | } |
223 | 223 | foreach ($relationship as $model) { |
224 | 224 | if ($model instanceof ResourceInterface) { |
225 | - $uniqueKey = $model->getType() . '/' . $model->getId(); |
|
225 | + $uniqueKey = $model->getType().'/'.$model->getId(); |
|
226 | 226 | $data[$uniqueKey] = $this->serializeModel($model); |
227 | 227 | } |
228 | 228 | } |