/home/techb158/ileadtechnology.com/vendor/spatie/laravel-backup/src/Commands
Edit: /home/techb158/ileadtechnology.com/vendor/spatie/laravel-backup/src/Commands/MonitorCommand.php (1249B)
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;
}
}
}