Skip to content

Commit 49646f0

Browse files
author
Fred Sung
committed
MAGETWO-36367: Fix Messages in Setup CLI Commands
- Code style issue fixed.
1 parent 99c2663 commit 49646f0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

setup/src/Magento/Setup/Console/Command/AdminUserCreateCommand.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,8 @@ public function validate(InputInterface $input)
108108
->setUsername($input->getOption(AdminAccount::KEY_USER))
109109
->setEmail($input->getOption(AdminAccount::KEY_EMAIL))
110110
->setPassword(
111-
$input->getOption(
112-
AdminAccount::KEY_PASSWORD) === null ? '' : $input->getOption(AdminAccount::KEY_PASSWORD
113-
)
111+
$input->getOption(AdminAccount::KEY_PASSWORD) === null ?
112+
'' : $input->getOption(AdminAccount::KEY_PASSWORD)
114113
);
115114

116115
$validator = new \Magento\Framework\Validator\Object;

0 commit comments

Comments
 (0)