Xinax\LaravelGettext\FileSystem::getStorageForDomain PHP Method

getStorageForDomain() public method

Get the full path for domain storage directory
public getStorageForDomain ( $domain ) : String
$domain
return String
    public function getStorageForDomain($domain)
    {
        $domainPath = $this->storagePath . DIRECTORY_SEPARATOR . $this->storageContainer . DIRECTORY_SEPARATOR . $domain;
        return $this->getRelativePath($this->basePath, $domainPath);
    }