File "UnsupportedImageFormat-20250318113842.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/image/src/Exceptions/UnsupportedImageFormat-20250318113842.php
File size: 242 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\Image\Exceptions;

use Exception;

class UnsupportedImageFormat extends Exception
{
    public static function make(string $extension): self
    {
        return new self("Unsupported format `{$extension}`.");
    }
}