File "InvalidFont.php"

Full Path: /var/www/html/back/vendor/spatie/image/src/Exceptions/InvalidFont.php
File size: 231 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\Image\Exceptions;

use Exception;

class InvalidFont extends Exception
{
    public static function make(string $font): self
    {
        return new self("Could not find a font file at `{$font}`");
    }
}