Skip to content

Commit 74e0744

Browse files
Apply fixes from StyleCI (#13)
1 parent d61162d commit 74e0744

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/HealthySqlDump.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,13 @@ public function checkHealth(BackupDestination $backupDestination)
4646
return;
4747
}
4848

49-
5049
try {
5150
Cache::put($key, true, now()->addHour()); // Ensure we don't start multiple checks simultaneously
5251

5352
$this->performCheck($backupDestination, $newestBackup);
5453

5554
Cache::put($key, true, now()->addWeek());
56-
}
57-
catch (\Exception $exception) {
55+
} catch (\Exception $exception) {
5856
Cache::put($key, false, now()->addWeek());
5957

6058
throw $exception;

0 commit comments

Comments
 (0)