We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | $revisionDate = date('Y-m-d', strtotime((string) $history->created_at)); |
| 22 | 22 | |
| 23 | 23 | // Be sure to instantiate the initial grouping array |
| 24 | - if (! array_key_exists($revisionDate, $revisions)) { |
|
| 24 | + if (!array_key_exists($revisionDate, $revisions)) { |
|
| 25 | 25 | $revisions[$revisionDate] = []; |
| 26 | 26 | } |
| 27 | 27 | |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | $revision = Revision::findOrFail($revisionId); |
| 48 | 48 | |
| 49 | 49 | // Update the revisioned field with the old value |
| 50 | - $this->update($entry->id, [ $revision->fieldName() => $revision->oldValue() ]); |
|
| 50 | + $this->update($entry->id, [$revision->fieldName() => $revision->oldValue()]); |
|
| 51 | 51 | |
| 52 | 52 | // Reload the entry so we have the latest revisions |
| 53 | 53 | $entry = $this->getEntry($id); |