* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Component\Form\FieldFactory\FieldFactoryInterface; use Symfony\Component\Form\CsrfProvider\CsrfProviderInterface; use Symfony\Component\Validator\ValidatorInterface; /** * Stores options for creating new forms * * @author Bernhard Schussek */ interface FormContextInterface { /** * Returns the options used for creating a new form * * @return array The form options */ public function getOptions(); }