for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Backup\Exceptions;
use Exception;
class BackupsDisabled extends Exception
{
public static function disabled(): BackupsDisabled
return new static('Backups are disabled for this environment');
}