]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/symfony/form/Symfony/Component/Form/RequestHandlerInterface.php
d0a58e69734c1649e5418c21aa255eb2bc4ed07e
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\Form
;
15 * Submits forms if they were submitted.
17 * @author Bernhard Schussek <bschussek@gmail.com>
19 interface RequestHandlerInterface
22 * Submits a form if it was submitted.
24 * @param FormInterface $form The form to submit.
25 * @param mixed $request The current request.
27 public function handleRequest(FormInterface
$form, $request = null);