backupDestination()->diskName(); if ($backupDestinationStatus->isHealthy()) { $this->info("The backups on {$diskName} are considered healthy."); event(new HealthyBackupWasFound($backupDestinationStatus)); } else { $hasError = true; $this->error("The backups on {$diskName} are considered unhealthy!"); event(new UnHealthyBackupWasFound($backupDestinationStatus)); } } if ($hasError) { return 1; } } }