We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | { |
39 | 39 | $id = $this->getCurrentEntryId(); |
40 | 40 | |
41 | - if (! $id) { |
|
41 | + if (!$id) { |
|
42 | 42 | return false; |
43 | 43 | } |
44 | 44 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function getEntry($id) |
56 | 56 | { |
57 | - if (! $this->entry) { |
|
57 | + if (!$this->entry) { |
|
58 | 58 | $this->entry = $this->model->findOrFail($id); |
59 | 59 | $this->entry = $this->entry->withFakes(); |
60 | 60 | } |
@@ -244,8 +244,8 @@ discard block |
||
244 | 244 | if (count($menu) !== count($menu, COUNT_RECURSIVE)) { |
245 | 245 | // developer defined as setPageLengthMenu([[50, 100, 300]]) or setPageLengthMenu([[50, 100, 300],['f','h','t']]) |
246 | 246 | // we will apply the same labels as the values to the menu if developer didn't |
247 | - if (! in_array(0, $menu[0])) { |
|
248 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
247 | + if (!in_array(0, $menu[0])) { |
|
248 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
249 | 249 | $menu[1] = $menu[0]; |
250 | 250 | } |
251 | 251 | } else { |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | $values = array_keys($menu); |
283 | 283 | $labels = array_values($menu); |
284 | 284 | |
285 | - if (! in_array(0, $values)) { |
|
285 | + if (!in_array(0, $values)) { |
|
286 | 286 | return [$values, $labels]; |
287 | 287 | } |
288 | 288 | |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | } else { |
291 | 291 | // developer defined length as setPageLengthMenu([50, 100, 300]) |
292 | 292 | // we will use the same values as labels |
293 | - if (! in_array(0, $menu)) { |
|
293 | + if (!in_array(0, $menu)) { |
|
294 | 294 | return [$menu, $menu]; |
295 | 295 | } |
296 | 296 |