| Current Path : /home/zada/public_html/vendor/spatie/db-dumper/src/Exceptions/ |
| Current File : /home/zada/public_html/vendor/spatie/db-dumper/src/Exceptions/CannotSetParameter.php |
<?php
namespace Spatie\DbDumper\Exceptions;
use Exception;
class CannotSetParameter extends Exception
{
public static function conflictingParameters(string $name, string $conflictName): static
{
return new static("Cannot set `{$name}` because it conflicts with parameter `{$conflictName}`.");
}
}