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;
    }