@@ -67,7 +67,7 @@ |
||
67 | 67 | protected function mapRelationshipsArray(array $data) |
68 | 68 | { |
69 | 69 | return array_map( |
70 | - function ($relation) { |
|
70 | + function($relation) { |
|
71 | 71 | return $this->getResourceId($relation) ?: ['attributes' => $relation]; |
72 | 72 | }, |
73 | 73 | $data |
@@ -29,7 +29,7 @@ |
||
29 | 29 | if ($this->rootAlias === null) { |
30 | 30 | $reflectionClass = $this->getClassMetadata()->getReflectionClass(); |
31 | 31 | if ($reflectionClass->implementsInterface(HasResourceKey::class)) { |
32 | - $this->rootAlias = call_user_func($reflectionClass->getName(). '::getResourceKey'); |
|
32 | + $this->rootAlias = call_user_func($reflectionClass->getName().'::getResourceKey'); |
|
33 | 33 | } else { |
34 | 34 | // Camel case to underscore-case |
35 | 35 | $this->rootAlias = strtolower(preg_replace('/(?<!^)[A-Z]/', '_$0', $reflectionClass->getShortName())); |