From 35cf2b7829565d626cd482c03119449f9ae7a483 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Fri, 21 Apr 2023 12:38:17 +0200 Subject: [PATCH] Adding link to main forms article Page: https://symfony.com/doc/5.4/form/without_class.html --- form/without_class.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/form/without_class.rst b/form/without_class.rst index 2a642e0d7f0..d0a44ed6205 100644 --- a/form/without_class.rst +++ b/form/without_class.rst @@ -2,8 +2,8 @@ How to Use a Form without a Data Class ====================================== In most cases, a form is tied to an object, and the fields of the form get -and store their data on the properties of that object. This is exactly what -you've seen so far in this article with the ``Task`` class. +and store their data on the properties of that object. This is what +:doc:`the main article on forms ` is about. But sometimes, you may want to use a form without a class, and get back an array of the submitted data. The ``getData()`` method allows you to do