@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | // and add their resources (and their relationships, and so on) to |
287 | 287 | // the map. |
288 | 288 | foreach ($include as $name => $nested) { |
289 | - if (! ($relationship = $resource->getRelationship($name))) { |
|
289 | + if (!($relationship = $resource->getRelationship($name))) { |
|
290 | 290 | continue; |
291 | 291 | } |
292 | 292 | |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | foreach ($paths as $path) { |
384 | 384 | list($primary, $nested) = array_pad(explode('.', $path, 2), 2, null); |
385 | 385 | |
386 | - if (! isset($tree[$primary])) { |
|
386 | + if (!isset($tree[$primary])) { |
|
387 | 387 | $tree[$primary] = []; |
388 | 388 | } |
389 | 389 |
@@ -53,7 +53,7 @@ |
||
53 | 53 | if (method_exists($this, $method)) { |
54 | 54 | $relationship = $this->$method(); |
55 | 55 | |
56 | - if ($relationship !== null && ! ($relationship instanceof Relationship)) { |
|
56 | + if ($relationship !== null && !($relationship instanceof Relationship)) { |
|
57 | 57 | throw new LogicException('Relationship method must return null or an instance of Tobscure\JsonApi\Relationship'); |
58 | 58 | } |
59 | 59 |