File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ following rules iteratively until no further processing can be done:
336336
337337- "." segments are removed;
338338- ".." segments are resolved;
339- - backslashes ("\" ) are converted into forward slashes ("/");
339+ - backslashes ("\\ ") are converted into forward slashes ("/");
340340- root paths ("/" and "C:/") always terminate with a slash;
341341- non-root paths never terminate with a slash;
342342- schemes (such as "phar://") are kept;
Original file line number Diff line number Diff line change @@ -286,6 +286,7 @@ and create an :class:`Symfony\\Component\\Mime\\Email` object::
286286 use Symfony\Component\HttpFoundation\Response;
287287 use Symfony\Component\Mailer\MailerInterface;
288288 use Symfony\Component\Mime\Email;
289+ use Symfony\Component\Routing\Annotation\Route;
289290
290291 class MailerController extends AbstractController
291292 {
Original file line number Diff line number Diff line change @@ -248,6 +248,14 @@ URL and process the submitted login credentials.
248248Be sure that this URL is covered by your main firewall (i.e. don't create
249249a separate firewall just for ``check_path `` URL).
250250
251+ failure_path
252+ ............
253+
254+ **type **: ``string `` **default **: ``/login ``
255+
256+ This is the route or path that the user is redirected to after a failed login attempt.
257+ It can be a relative/absolute URL or a Symfony route name.
258+
251259use_forward
252260...........
253261
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ EnumType Field
55==============
66
77A multi-purpose field used to allow the user to "choose" one or more options
8- defined in a `PHP enumeration `_. It extends the :doc: `ChoiceType </reference/forms/types/enum >`
8+ defined in a `PHP enumeration `_. It extends the :doc: `ChoiceType </reference/forms/types/choice >`
99field and defines the same options.
1010
1111+---------------------------+----------------------------------------------------------------------+
You can’t perform that action at this time.
0 commit comments