setDescription(__d('cake_d_c/users', 'Activate a specific user')); } /** * Implement this method with your command's logic. * * @param \Cake\Console\Arguments $args The command arguments. * @param \Cake\Console\ConsoleIo $io The console io * @return int|null|void The exit code or null for success */ public function execute(Arguments $args, ConsoleIo $io) { $user = $this->_changeUserActive($args, $io, true); $io->out(__d('cake_d_c/users', 'User was activated: {0}', $user->username)); } /** * @inheritDoc */ public static function defaultName(): string { return 'users activate_user'; } }