Skip to content

Commit ed9d73d

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +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(AdminAccount::KEY_PASSWORD) === null ?
112-
'' : $input->getOption(AdminAccount::KEY_PASSWORD)
111+
$input->getOption(AdminAccount::KEY_PASSWORD) === null
112+
? '' : $input->getOption(AdminAccount::KEY_PASSWORD)
113113
);
114114

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

0 commit comments

Comments
 (0)