]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/AnnotationBundle/Form/RangeType.php
Displays an error with an annotation with a too long quote
[github/wallabag/wallabag.git] / src / Wallabag / AnnotationBundle / Form / RangeType.php
1 <?php
2
3 namespace Wallabag\AnnotationBundle\Form;
4
5 use Symfony\Component\Form\AbstractType;
6 use Symfony\Component\Form\FormBuilderInterface;
7
8 class RangeType extends AbstractType
9 {
10 public function buildForm(FormBuilderInterface $builder, array $options)
11 {
12 $builder
13 ->add('start')
14 ->add('startOffset')
15 ->add('end')
16 ->add('endOffset')
17 ;
18 }
19 }