File "InvalidFont.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/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}`");
}
}