| @@ 47-55 (lines=9) @@ | ||
| 44 | return $this; |
|
| 45 | } |
|
| 46 | ||
| 47 | public function setValues($a, $b) |
|
| 48 | { |
|
| 49 | $input = new InputString($a, $b); |
|
| 50 | $this->input = $input; |
|
| 51 | ||
| 52 | $this->setMode(self::MODE_STRING); |
|
| 53 | ||
| 54 | return $this; |
|
| 55 | } |
|
| 56 | ||
| 57 | public function setStopwords(array $list) |
|
| 58 | { |
|
| @@ 64-72 (lines=9) @@ | ||
| 61 | return $this; |
|
| 62 | } |
|
| 63 | ||
| 64 | public function setNumberValues($a, $b) |
|
| 65 | { |
|
| 66 | $input = new InputNumber($a, $b); |
|
| 67 | $this->input = $input; |
|
| 68 | ||
| 69 | $this->setMode(self::MODE_NUMBER); |
|
| 70 | ||
| 71 | return $this; |
|
| 72 | } |
|
| 73 | ||
| 74 | protected function getExpert() |
|
| 75 | { |
|