Platformsh\Cli\Command\User\UserDeleteCommand::execute PHP Метод

execute() защищенный Метод

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $this->validateInput($input);
        $project = $this->getSelectedProject();
        $email = $input->getArgument('email');
        $selectedUser = $this->api()->loadProjectAccessByEmail($project, $email);
        if (empty($selectedUser)) {
            $this->stdErr->writeln("User not found: <error>{$email}</error>");
            return 1;
        }
        if ($project->owner === $selectedUser->id) {
            $this->stdErr->writeln(sprintf('The user <error>%s</error> is the owner of the project %s.', $email, $this->api()->getProjectLabel($project, 'error')));
            $this->stdErr->writeln("The project's owner cannot be deleted.");
            return 1;
        }
        /** @var \Platformsh\Cli\Helper\QuestionHelper $questionHelper */
        $questionHelper = $this->getHelper('question');
        if (!$questionHelper->confirm("Are you sure you want to delete the user <info>{$email}</info>?")) {
            return 1;
        }
        $result = $selectedUser->delete();
        $this->stdErr->writeln("User <info>{$email}</info> deleted");
        if (!$input->getOption('no-wait')) {
            ActivityUtil::waitMultiple($result->getActivities(), $this->stdErr, $project);
        }
        // If the user was deleting themselves from the project, then invalidate
        // the projects cache.
        $myUuid = $this->api()->getMyAccount()['uuid'];
        if ($myUuid === $selectedUser->id) {
            $this->api()->clearProjectsCache();
        }
        return 0;
    }
UserDeleteCommand