Rename PickEventType to PickEventTypeType for type of events

This commit is contained in:
2019-05-02 12:11:40 +02:00
parent ee8f303d25
commit 8a6e7396ca
4 changed files with 8 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Chill\MainBundle\Form\Type\TranslatableStringFormType;
use Chill\EventBundle\Form\Type\PickEventType;
use Chill\EventBundle\Form\Type\PickEventTypeType;
class StatusType extends AbstractType
{
@@ -19,7 +19,7 @@ class StatusType extends AbstractType
$builder
->add('name', TranslatableStringFormType::class)
->add('active')
->add('type', PickEventType::class)
->add('type', PickEventTypeType::class)
;
}