Skip to content

Instantly share code, notes, and snippets.

@spcmky
spcmky / ExampleType.php
Last active April 10, 2019 07:52
Symfony2 Form Type Fieldset Example
<?php
// src/Acme/DemoBundle/Form/ExampleType.php
namespace Acme\DemoBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Acme\DemoBundle\Form\Type\FieldsetType;
class ExampleType extends AbstractType {