We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | $id = $this->crud->getCurrentEntryId() ?? $id; |
| 48 | 48 | |
| 49 | 49 | $revisionId = \Request::input('revision_id', false); |
| 50 | - if (! $revisionId) { |
|
| 50 | + if (!$revisionId) { |
|
| 51 | 51 | abort(500, 'Can\'t restore revision without revision_id'); |
| 52 | 52 | } else { |
| 53 | 53 | $this->crud->restoreRevision($id, $revisionId); // do the update |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | | |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | - return [ |
|
| 16 | + return [ |
|
| 17 | 17 | 'infoFiltered' => '(filtered from _MAX_ total entries)', |
| 18 | 18 | 'thousands' => ',', |
| 19 | 19 | 'admin' => 'المشرف', |
@@ -25,9 +25,9 @@ |
||
| 25 | 25 | </thead> |
| 26 | 26 | <?php |
| 27 | 27 | |
| 28 | -if (! empty($_POST)) { |
|
| 28 | +if (!empty($_POST)) { |
|
| 29 | 29 | foreach ($_POST as $key => $value) { |
| 30 | - if ((! is_string($value) && ! is_numeric($value)) || ! is_string($key)) { |
|
| 30 | + if ((!is_string($value) && !is_numeric($value)) || !is_string($key)) { |
|
| 31 | 31 | continue; |
| 32 | 32 | } |
| 33 | 33 | |