We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | { |
41 | 41 | $id = $this->getCurrentEntryId(); |
42 | 42 | |
43 | - if (! $id) { |
|
43 | + if (!$id) { |
|
44 | 44 | return false; |
45 | 45 | } |
46 | 46 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function getEntry($id) |
58 | 58 | { |
59 | - if (! $this->entry) { |
|
59 | + if (!$this->entry) { |
|
60 | 60 | $this->entry = $this->model->findOrFail($id); |
61 | 61 | $this->entry = $this->entry->withFakes(); |
62 | 62 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $relation_parts = explode('.', $relation); |
90 | 90 | $last_relation_part = $last_valid_relation_method = end($relation_parts); |
91 | 91 | |
92 | - array_reduce(array_splice($relation_parts, 0, count($relation_parts)), function ($obj, $method) use (&$last_valid_relation_method) { |
|
92 | + array_reduce(array_splice($relation_parts, 0, count($relation_parts)), function($obj, $method) use (&$last_valid_relation_method) { |
|
93 | 93 | try { |
94 | 94 | $result = $obj->$method(); |
95 | 95 | $last_valid_relation_method = $method; |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | // we will apply the same labels as the values to the menu if developer didn't |
267 | 267 | $this->abortIfInvalidPageLength($menu[0]); |
268 | 268 | |
269 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
269 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
270 | 270 | $menu[1] = $menu[0]; |
271 | 271 | } |
272 | 272 | } else { |