imponeer/smarty-image

View on GitHub
src/Exceptions/BadFitValueException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Imponeer\Smarty\Extensions\Image\Exceptions;

use SmartyException;

class BadFitValueException extends SmartyException
{

    protected $message = 'resized_image "fit" argument must have "inside", "outside" or "fill" value';

}