PAGI\Node\Node::expectAtLeast PHP Method

expectAtLeast() public method

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
return Node
    public function expectAtLeast($length)
    {
        $this->minInput = $length;
        return $this;
    }