File "InvalidImageDriver.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/image/src/Exceptions/InvalidImageDriver.php
File size: 258 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\Image\Exceptions;

use Exception;

class InvalidImageDriver extends Exception
{
    public static function driver(string $driver): self
    {
        return new self("Driver must be `gd` or `imagick`. `{$driver}` provided.");
    }
}