Platformsh\Cli\Command\Local\LocalCleanCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('local:clean')->setAliases(['clean'])->setDescription('Remove old project builds')->addOption('keep', null, InputOption::VALUE_REQUIRED, 'The maximum number of builds to keep', 5)->addOption('max-age', null, InputOption::VALUE_REQUIRED, 'The maximum age of builds, in seconds. Ignored if not set.')->addOption('include-active', null, InputOption::VALUE_NONE, 'Delete active build(s) too');
    }
LocalCleanCommand