protected function configure()

in src/Utils/Actions/RunCsFixerCommand.php [35:66]


    protected function configure()
    {
        $this
            ->setName('cs-fixer')
            ->setDescription('Execute a command with the deployed image')
            ->addArgument(
                'repo',
                InputArgument::REQUIRED,
                'The name of the repo to run the CS fixer for'
            )
            ->addOption(
                'workflow-file',
                '',
                InputOption::VALUE_REQUIRED,
                'name of the github workflow file which contains the configuration',
                null
            )
            ->addOption(
                'ref',
                '',
                InputOption::VALUE_REQUIRED,
                'The branch of the repo run the CS fixer for',
                'main'
            )
            ->addOption(
                'flags',
                '',
                InputOption::VALUE_REQUIRED,
                'The flags to pass down to the CS fixer',
                '--dry-run --diff'
            );
    }