Skip to content

Commit 1a520f8

Browse files
committed
minor #11199 Remove unnecessary backslash escape (clerx)
This PR was merged into the 3.4 branch. Discussion ---------- Remove unnecessary backslash escape <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 80fec9e Remove unnecessary backslash escape
2 parents 4d19492 + 80fec9e commit 1a520f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/form.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ the CSRF generator and validated when binding the form.
156156

157157
You can disable CSRF protection per form using the ``csrf_protection`` option::
158158

159-
use Symfony\\Component\\Form\\Extension\\Core\\Type\\FormType
159+
use Symfony\Component\Form\Extension\Core\Type\FormType;
160160

161161
$form = $formFactory->createBuilder(FormType::class, null, ['csrf_protection' => false])
162162
->getForm();

0 commit comments

Comments
 (0)