eZ\Publish\Core\Persistence\Legacy\Content\UrlAlias\SlugConverter::getWordSeparator PHP Méthode

getWordSeparator() protected méthode

Returns word separator value.
protected getWordSeparator ( ) : string
Résultat string
    protected function getWordSeparator()
    {
        switch ($this->configuration['wordSeparatorName']) {
            case 'dash':
                return '-';
            case 'underscore':
                return '_';
            case 'space':
                return ' ';
        }
        return '-';
    }