Neos\Flow\Command\ConfigurationCommandController::listTypesCommand PHP Method

listTypesCommand() public method

List registered configuration types
public listTypesCommand ( ) : void
return void
    public function listTypesCommand()
    {
        $this->outputLine('The following configuration types are registered:');
        $this->outputLine();
        foreach ($this->configurationManager->getAvailableConfigurationTypes() as $type) {
            $this->outputFormatted('- %s', [$type]);
        }
    }