backupFile = $backupFile; } /** * Execute the job. */ public function handle(): void { echo "Restoring backup file: " . $this->backupFile . "\n"; $file = Storage::disk('local')->get($this->backupFile); if (!$file) { echo "Backup file not found\n"; return; } sleep(14); } }