From 51a4eade15b9a2998403939b3532a0d8ad88421f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leandro=20V=C3=A1zquez=20Cervantes=20=5BHiberus=5D?= Date: Tue, 4 Apr 2023 12:42:06 +0200 Subject: [PATCH] added 3rd argument for drush uli, otherwise it complains with an error --- src/Command/User/LoginUrlCommand.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Command/User/LoginUrlCommand.php b/src/Command/User/LoginUrlCommand.php index b54055ca7..70cf52eb8 100644 --- a/src/Command/User/LoginUrlCommand.php +++ b/src/Command/User/LoginUrlCommand.php @@ -103,7 +103,8 @@ protected function execute(InputInterface $input, OutputInterface $output) $this->getIo()->success( sprintf( $this->trans('commands.user.login.url.messages.url'), - $userEntity->getAccountName() + $userEntity->getAccountName(), + null ) );