Sulu\Bundle\DocumentManagerBundle\Command\InitializeCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('sulu:document:initialize')->setDescription('Initialize the content repository/repositories.')->addOption('purge', null, InputOption::VALUE_NONE, 'Purge the content repository before initialization.')->addOption('force', null, InputOption::VALUE_NONE, 'Do not ask for confiration.')->setHelp(<<<'EOT'
Initialize the PHPCR content repository. This command
will all registered initializers. 

    <info>$ %command.full_name%</info>
    
WARNING: Initializers SHOULD be idempotent and it SHOULD be safe to run this
         command multiple times - but as we have no control over which initializers are
         registered and what they do this cannot be guaranteed, so use at your own
         discretion on a system that has sensitive data.
EOT
);
    }