File "CannotStartDump.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/db-dumper/src/Exceptions/CannotStartDump.php
File size: 249 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\DbDumper\Exceptions;

use Exception;

class CannotStartDump extends Exception
{
    public static function emptyParameter(string $name): static
    {
        return new static("Parameter `{$name}` cannot be empty.");
    }
}