8000 Merge branch '6.2' into 6.3 · symfony/symfony-docs@3516035 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3516035

Browse files
committed
Merge branch '6.2' into 6.3
* 6.2: Update forms.rst add Void to delete method
2 parents c63db2b + b252406 commit 3516035

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

forms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ transform the form into a *form view* instance.
284284
.. deprecated:: 6.2
285285

286286
Prior to Symfony 6.2, you had to use ``$this->render(..., ['form' => $form->createView()])``
287-
or the ``renderForm()`` method to render to form. The ``renderForm()``
287+
or the ``renderForm()`` method to render the form. The ``renderForm()``
288288
method is deprecated in favor of directly passing the ``FormInterface``
289289
instance to ``render()``.
290290

security/passwords.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ After configuring the correct algorithm, you can use the
231231
// ...
232232
}
233233
234-
public function delete(UserPasswordHasherInterface $passwordHasher, UserInterface $user)
234+
public function delete(UserPasswordHasherInterface $passwordHasher, UserInterface $user): void
235235
{
236236
// ... e.g. get the password from a "confirm deletion" dialog
237237
$plaintextPassword = ...;

0 commit comments

Comments
 (0)
0