Eccube\Controller\AbstractController::getBoundForm PHP Method

getBoundForm() protected method

getBoundForm
Deprecation:
protected getBoundForm ( Application $app, $type )
$app Eccube\Application
    protected function getBoundForm(Application $app, $type)
    {
        @trigger_error('The ' . __METHOD__ . ' method is deprecated.', E_USER_DEPRECATED);
        $form = $app['form.factory']->createBuilder($app['eccube.form.type.' . $type], $app['eccube.entity.' . $type])->getForm();
        $form->handleRequest($app['request']);
        return $form;
    }