PAGI\Node\Node::expectAtLeast PHP Метод

expectAtLeast() публичный Метод

Configure the node to expect at least this many digits. The input is considered complete when this many digits has been entered. Cancel and end of input digits (if configured) are not taken into account.
public expectAtLeast ( integer $length ) : Node
$length integer
Результат Node
    public function expectAtLeast($length)
    {
        $this->minInput = $length;
        return $this;
    }