aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/AnnotationBundle/Form/RangeType.php
blob: 0647375e0a2e84dec3c826355241a1ee9c390b08 (plain) (tree)


















                                                                            
<?php

namespace Wallabag\AnnotationBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

class RangeType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('start')
            ->add('startOffset')
            ->add('end')
            ->add('endOffset')
        ;
    }
}