-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Fixed link syntax #3254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed link syntax #3254
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,11 @@ How to use the submit() Function to handle Form Submissions | |
=========================================================== | ||
|
||
.. versionadded:: 2.3 | ||
The ``handleRequest()`` method was added in Symfony 2.3. | ||
The :method:`Symfony\\Component\\Form\\FormInterface::handleRequest` | ||
method was added in Symfony 2.3. | ||
|
||
In Symfony 2.3, a new :method:`Symfony\Component\Form\FormInterface::handleRequest` | ||
method was added, which makes handling form submissions easier than ever:: | ||
With the ``handleRequest()`` method, it is really easy to handle form | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why here we don't use what we said above? :method:``... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I always use the api link once in an article. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so you are saying that using it once is enough and then the compiler software uses it from then on? is that how it works? thanks for filing gaps There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no. I say that using it once for the user is enough... :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i am lost, i hope you will be in Warsaw so you can explain me more clear the usage There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It does nothing magic. It just shows the link where you tell it to show the link. I think it's useless to convert every notion of an API method into an api url, one link is enough for the user to know where it can read more about the method. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i get it now, thanks for the clear explanation 👶 |
||
submissions:: | ||
|
||
use Symfony\Component\HttpFoundation\Request; | ||
// ... | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
introduced