File "CouldNotLoadImage.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/image/src/Exceptions/CouldNotLoadImage.php
File size: 387 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Image\Exceptions;
use Exception;
class CouldNotLoadImage extends Exception
{
public static function make(string $path): static
{
return new static("Could not load image at path `{$path}`");
}
public static function fileDoesNotExist(string $path): static
{
return new static("File does not exist at path `{$path}`");
}
}