Sulu\Component\Content\Metadata\Factory\StructureMetadataFactory::getDefaultStructureType PHP Method

getDefaultStructureType() private method

Return the default structure type for the the given document type.
private getDefaultStructureType ( string $type ) : string | null
$type string
return string | null
    private function getDefaultStructureType($type)
    {
        if (!isset($this->defaultTypes[$type])) {
            return;
        }
        return $this->defaultTypes[$type];
    }