File "CannotResize.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/image/src/Exceptions/CannotResize.php
File size: 365 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Image\Exceptions;
use Exception;
class CannotResize extends Exception
{
public static function invalidWidth(): self
{
return new self('This resize would result in width being 0.');
}
public static function invalidHeight(): self
{
return new self('This resize would result in height being 0.');
}
}