From 7076343338ae3439f3c86f01144818abe8c31978 Mon Sep 17 00:00:00 2001 From: George Halkiadakis Date: Sun, 12 Mar 2023 07:16:23 +0200 Subject: add container helpers; constuct public directory-tree --- classes/authenticator/PasswordTrait.php | 40 --------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 classes/authenticator/PasswordTrait.php (limited to 'classes/authenticator/PasswordTrait.php') diff --git a/classes/authenticator/PasswordTrait.php b/classes/authenticator/PasswordTrait.php deleted file mode 100644 index 22976d8..0000000 --- a/classes/authenticator/PasswordTrait.php +++ /dev/null @@ -1,40 +0,0 @@ - $this->cost] - ); - } - - public function isPasswordValid(UserInterface $user, string $plainPassword): bool - { - return password_verify( - $plainPassword, - $user->getPassword() - ); - } - - public function setCost(int $cost): void - { - if ($cost < 4 || $cost > 12) { - throw new \InvalidArgumentException('Cost must be in the range of 4-31.'); - } - $this->cost = $cost; - } -} -- cgit v1.2.3