setDescription(__d('cake_d_c/users', 'Deactivate 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, false); $io->out(__d('cake_d_c/users', 'User was de-activated: {0}', $user->username)); } /** * @inheritDoc */ public static function defaultName(): string { return 'users deactivate_user'; } }