From b41b378e63ad2a630c7fcbb8e84d377236ca79b9 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Tue, 30 Jun 2020 12:45:06 +0200 Subject: [PATCH] Update form_collections.rst Simplifying the code block. Second part of https://github.com/symfony/symfony-docs/pull/13446 --- form/form_collections.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/form/form_collections.rst b/form/form_collections.rst index 13ed8781709..02ebe3f3680 100644 --- a/form/form_collections.rst +++ b/form/form_collections.rst @@ -227,8 +227,6 @@ it will receive an *unknown* number of tags. Otherwise, you'll see a public function buildForm(FormBuilderInterface $builder, array $options) { - $builder->add('description'); - $builder->add('tags', CollectionType::class, [ 'entry_type' => TagType::class, 'entry_options' => ['label' => false],