From 75c4c010e8a13640206f24f1865c7642d2e75dff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Suwi=C5=84ski?= Date: Tue, 7 Feb 2023 10:23:56 +0100 Subject: [PATCH] typo --- core/user.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/user.md b/core/user.md index 0861e06c6ac..8de7b83cda4 100644 --- a/core/user.md +++ b/core/user.md @@ -106,9 +106,9 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface return $this->plainPassword; } - public function setPlainPassword(?string $painPassword): self + public function setPlainPassword(?string $plainPassword): self { - $this->plainPassword = $painPassword; + $this->plainPassword = $plainPassword; return $this; }