Pimcore\Console\Command\MaintenanceCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('maintenance')->setDescription('Asynchronous maintenance jobs of pimcore (needs to be set up as cron job)')->addOption('job', 'j', InputOption::VALUE_OPTIONAL, 'call just a specific job(s), use "," (comma) to execute more than one job (valid options: scheduledtasks, cleanupcache, logmaintenance, sanitycheck, cleanuplogfiles, versioncleanup, versioncompress, redirectcleanup, cleanupbrokenviews, usagestatistics, downloadmaxminddb, tmpstorecleanup, imageoptimize and plugin classes if you want to call a plugin maintenance)')->addOption('force', 'f', InputOption::VALUE_NONE, "run the jobs, regardless if they're locked or not");
    }
MaintenanceCommand