We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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->query->findOrFail($id); |
61 | 61 | $this->entry = $this->entry->withFakes(); |
62 | 62 | } |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public function getEntryWithLocale($id) |
75 | 75 | { |
76 | - if (! $this->entry) { |
|
76 | + if (!$this->entry) { |
|
77 | 77 | $this->entry = $this->getEntry($id); |
78 | 78 | } |
79 | 79 | |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function enableDetailsRow() |
154 | 154 | { |
155 | - if (! backpack_pro()) { |
|
155 | + if (!backpack_pro()) { |
|
156 | 156 | throw new BackpackProRequiredException('Details row'); |
157 | 157 | } |
158 | 158 | |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | // we will apply the same labels as the values to the menu if developer didn't |
252 | 252 | $this->abortIfInvalidPageLength($menu[0]); |
253 | 253 | |
254 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
254 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
255 | 255 | $menu[1] = $menu[0]; |
256 | 256 | } |
257 | 257 | } else { |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | */ |
340 | 340 | public function enableExportButtons() |
341 | 341 | { |
342 | - if (! backpack_pro()) { |
|
342 | + if (!backpack_pro()) { |
|
343 | 343 | throw new BackpackProRequiredException('Export buttons'); |
344 | 344 | } |
345 | 345 |