PAGI\Node\Node::expectAtLeast PHP Méthode

expectAtLeast() public méthode

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