setName('user:add') ->setDescription('Adding of user.') ->addArgument('email', InputArgument::REQUIRED, 'Email of user') ->addArgument('password', InputArgument::REQUIRED, 'Password of user') ->addArgument('type', InputArgument::OPTIONAL, 'Type of user');; } public function execute(InputInterface $input, OutputInterface $output): int { $user = new User([ 'email' => $input->getArgument('email'), ]); $user->setPlainPassword($input->getArgument('password')); if ($input->hasArgument('type')) { $user->setType($input->getArgument('type')); } try { $modify = new Modify(\Container::$dbConnection, 'users'); $modify->fill($user->toArray()); $modify->save(); } catch (\Exception $e) { $output->writeln('Adding user failed!'); $output->writeln(''); $output->writeln((string) $e); $output->writeln(''); return 1; } $output->writeln('User was successfully added!'); return 0; } }