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::
->getForm();
if ('POST' == $request->getMethod()) {
$form->bindRequest($request);
$form->bind($request);
if ($form->isValid()) {
$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