Bluz\Validator\Rule\Min::getTemplate PHP Method

getTemplate() public method

Get error template
public getTemplate ( ) : string
return string
    public function getTemplate()
    {
        if ($this->inclusive) {
            return __('{{name}} must be greater than or equals "%s"', $this->minValue);
        } else {
            return __('{{name}} must be greater than "%s"', $this->minValue);
        }
    }