Searched refs:charMin (Results 1 – 1 of 1) sorted by relevance
18 protected $charMin = 2; variable in phpHyphenation70 * @param int $charMin Minimum letters a word must have to be hyphenated (default: 2)73 public function setConstraints($leftMin=2, $rightMin=2, $charMin=2, $charMax=10) { argument76 $this->charMin = $charMin;211 if(mb_strlen($word) < $this->charMin) return $word;222 for ($position=0; $position<=($word_length-$this->charMin); $position++) {225 for ($win=$this->charMin; $win<=$maxwins; $win++) {