Sulu\Component\Content\Metadata\Factory\StructureMetadataFactory::getDefaultStructureType PHP 메소드

getDefaultStructureType() 개인적인 메소드

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