for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Backup\Exceptions;
use Exception;
class InvalidCommand extends Exception
{
public static function create(string $reason): self
return new static($reason);
}