auraphp / Aura.Input

Tools to describe HTML form fields and values.
MIT License
65 stars 11 forks source link

GetItrator() throw NoSuchInput exception #18

Closed koriym closed 11 years ago

koriym commented 11 years ago

Form::getIterator() doesn't work.

$form = new Form(new Builder, new Filter);
        $form->setField('foo');
        $form->setField('bar');

        $iterator = $form->getIterator();

'Aura\Input\Exception\NoSuchInput : fields' exception thrown with this code.