JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrmin = $min; $this->max = $max; if (null === $this->min && null === $this->max) { throw new ValidatorParameterException('Either option "min", "max" must be given for constraint'); } } /** * @return int|null */ public function getMin(): ?int { return $this->min; } /** * @return int|null */ public function getMax(): ?int { return $this->max; } /** * @return string */ public function getMinMessage(): string { return str_replace('{{ limit }}', $this->min, $this->minMessage); } /** * @return string */ public function getMaxMessage(): string { return str_replace('{{ limit }}', $this->max, $this->maxMessage); } }