File "InvalidCommand.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/laravel-backup/src/Exceptions/InvalidCommand.php
File size: 207 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Backup\Exceptions;
use Exception;
class InvalidCommand extends Exception
{
public static function create(string $reason): self
{
return new static($reason);
}
}