@@ -98,7 +98,7 @@ |
||
98 | 98 | */ |
99 | 99 | protected function addPaginationLink($name, $url, array $queryParams, $offset, $limit) |
100 | 100 | { |
101 | - if (! isset($queryParams['page']) || ! is_array($queryParams['page'])) { |
|
101 | + if (!isset($queryParams['page']) || !is_array($queryParams['page'])) { |
|
102 | 102 | $queryParams['page'] = []; |
103 | 103 | } |
104 | 104 |
@@ -162,7 +162,7 @@ |
||
162 | 162 | { |
163 | 163 | $fields = $this->getInput('fields'); |
164 | 164 | |
165 | - if (! is_array($fields)) { |
|
165 | + if (!is_array($fields)) { |
|
166 | 166 | return []; |
167 | 167 | } |
168 | 168 |
@@ -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 |