service = $service; } public function actionAdd() { $username = $this->prompt('Username:', ['required' => true]); $email = $this->prompt('Email:', ['required' => true]); $password = $this->prompt('Password:', ['required' => true]); $role = $this->select('Role:', ArrayHelper::map(Yii::$app->authManager->getRoles(), 'name', 'description')); //$this->findModel($username, $email); $form = new UserForm(); $form->username = $username; $form->email = $email; $form->password = $password; $form->role = $role; if ($form->validate()) { $this->service->create($form); $this->stdout('Done!' . PHP_EOL); return; } $this->stdout('Errors found!' . PHP_EOL); foreach ($form->errors as $error) { $this->stdout(is_string($error) ? $error : $error[0] . PHP_EOL); } //$this->stdout(print_r($form->errors, true) . PHP_EOL); /* $user = User::create($username, $email, $phone, $password); $user->save();*/ } private function findModel(string $username, string $email): void { if ($model = User::find()->where(['username' => $username])->orWhere(['email' => $email])->one()) { throw new Exception('User is already exists.'); } } }