Newscoop\Entity\Repository\TemplateRepository::formatKey PHP 메소드

formatKey() 공개 메소드

Format key
public formatKey ( string $key ) : string
$key string
리턴 string
    public function formatKey($key)
    {
        $key = trim($key, '/');
        return ltrim("{$this->basePath}/{$key}", '/');
    }