for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Backup\Exceptions;
use Exception;
class InvalidBackupJob extends Exception
{
public static function noDestinationsSpecified(): self
return new static('A backup job cannot run without a destination to backup to!');
}
public static function destinationDoesNotExist(string $diskName): self
return new static("There is no backup destination with a disk named `{$diskName}`.");
public static function noFilesToBeBackedUp(): self
return new static('There are no files to be backed up.');