PAGI\Node\Node::cancelWithInputRetriesInput PHP Method

cancelWithInputRetriesInput() public method

Allow the user to retry input by pressing the cancel digit after entered one or more digits. For example, when entering a 12 number pin, the user might press the cancel digit at the 5th digit to re-enter it. This counts as a failed input, but will not cancel the node. The node will be cancelled only if the user presses the cancel digit with NO input at all.
public cancelWithInputRetriesInput ( ) : Node
return Node
    public function cancelWithInputRetriesInput()
    {
        $this->cancelWithInputRetriesInput = true;
        return $this;
    }