From ce414c490df654ef9be6fa4c0950f2bec811c523 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Mon, 30 Mar 2020 13:25:36 +0200 Subject: [PATCH] Removing redundant info --- form/form_collections.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/form/form_collections.rst b/form/form_collections.rst index d5d26a873eb..99c63bcfb83 100644 --- a/form/form_collections.rst +++ b/form/form_collections.rst @@ -19,8 +19,7 @@ that Task, right inside the same form. including the ``ManyToMany`` association mapping definition on the Task's ``tags`` property. -First, suppose that each ``Task`` belongs to multiple ``Tag`` objects. Start -by creating a simple ``Task`` class:: +Let's start by creating a simple ``Task`` entity:: // src/AppBundle/Entity/Task.php namespace AppBundle\Entity; @@ -30,7 +29,6 @@ by creating a simple ``Task`` class:: class Task { protected $description; - protected $tags; public function __construct()