From 8a88e39a886f1d69ba18243ff2915b2b5198d3fa Mon Sep 17 00:00:00 2001 From: Wouter de Jong Date: Sun, 12 Feb 2023 23:57:18 +0100 Subject: [PATCH] Add void return types --- Command/UserPasswordHashCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/UserPasswordHashCommand.php b/Command/UserPasswordHashCommand.php index 5fdc89c..d3c80b9 100644 --- a/Command/UserPasswordHashCommand.php +++ b/Command/UserPasswordHashCommand.php @@ -49,7 +49,7 @@ public function __construct(PasswordHasherFactoryInterface $hasherFactory, array parent::__construct(); } - protected function configure() + protected function configure(): void { $this ->addArgument('password', InputArgument::OPTIONAL, 'The plain password to hash.')