ZF-11581: Only when the whole form is valid, the receive() method should be called and performed
Description
receive is never called when the form is valid.
if ($form->isValid($formData)) { if(file_exist($form->file->getFileName()) { //received has been called } // received not called // some methods to fire the receive() // $file = $form->getValue('file'); // or $form->file->receive(); }
At least please write this in the documentation.
Comments
No comments to display