Commit 1981d132 authored by Henrik Bjørnskov's avatar Henrik Bjørnskov

Updated FormServiceProvider documentation to not use the deprecated `bindRequest` method

parent a12b0cc4
...@@ -93,7 +93,7 @@ example:: ...@@ -93,7 +93,7 @@ example::
->getForm(); ->getForm();
if ('POST' == $request->getMethod()) { if ('POST' == $request->getMethod()) {
$form->bindRequest($request); $form->bind($request);
if ($form->isValid()) { if ($form->isValid()) {
$data = $form->getData(); $data = $form->getData();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment