Lines Matching defs:minLength
23 protected $minLength = 1;
41 * @param int $minLength
44 public function setMinLength(int $minLength)
46 if ($minLength <= 0 || $minLength >= $this->maxLength)
48 throw new \LengthException('$minLength must be greater than zero and less than $this->maxLength.');
51 $this->minLength = $minLength;
60 if ($maxLength <= $this->minLength)
62 throw new \LengthException('$maxLength must be greater than $this->minLength.');
118 for ($i = $this->minLength; $i <= $this->maxLength; ++$i)