We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | */ |
58 | 58 | public function getEntry($id) |
59 | 59 | { |
60 | - if (! $this->entry) { |
|
60 | + if (!$this->entry) { |
|
61 | 61 | $this->eagerLoadRelationships('fields'); |
62 | 62 | $this->entry = $this->query->findOrFail($id); |
63 | 63 | $this->entry = $this->entry->withFakes(); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function getEntryWithLocale($id) |
77 | 77 | { |
78 | - if (! $this->entry) { |
|
78 | + if (!$this->entry) { |
|
79 | 79 | $this->entry = $this->getEntry($id); |
80 | 80 | } |
81 | 81 | |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | */ |
211 | 211 | public function enableDetailsRow() |
212 | 212 | { |
213 | - if (! backpack_pro()) { |
|
213 | + if (!backpack_pro()) { |
|
214 | 214 | throw new BackpackProRequiredException('Details row'); |
215 | 215 | } |
216 | 216 | |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | // we will apply the same labels as the values to the menu if developer didn't |
310 | 310 | $this->abortIfInvalidPageLength($menu[0]); |
311 | 311 | |
312 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
312 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
313 | 313 | $menu[1] = $menu[0]; |
314 | 314 | } |
315 | 315 | } else { |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | */ |
398 | 398 | public function enableExportButtons() |
399 | 399 | { |
400 | - if (! backpack_pro()) { |
|
400 | + if (!backpack_pro()) { |
|
401 | 401 | throw new BackpackProRequiredException('Export buttons'); |
402 | 402 | } |
403 | 403 |