project = $project; } protected function configure(): void { $this->setDescription('change project version') ->addArgument('projects', InputArgument::REQUIRED, 'Projects') ->addArgument('token', InputArgument::REQUIRED, 'token') ; } protected function execute(InputInterface $input, OutputInterface $output) { $projectView = new ProjectCommandView( $input->getArgument('projects'), $input->getArgument('token') ); $this->project->handle($projectView); } }