channelUserService = $channelUserService; } public function handle() { // 传参 $account = trim($this->argument('account')); $password = trim($this->argument('password')); // 注册 $res = $this->channelUserService->register($account, $password); dd($account, $password, $res); } }