Bluz\Validator\Rule\Max::getTemplate PHP Метод

getTemplate() публичный Метод

Get error template
public getTemplate ( ) : string
Результат string
    public function getTemplate()
    {
        if ($this->inclusive) {
            return __('{{name}} must be lower than or equals "%s"', $this->maxValue);
        } else {
            return __('{{name}} must be lower than "%s"', $this->maxValue);
        }
    }