WebLoader\Nette\LoaderFactory::formatTempPath PHP Method

formatTempPath() private method

private formatTempPath ( string $name ) : string
$name string
return string
    private function formatTempPath($name)
    {
        $lName = strtolower($name);
        $tempPath = isset($this->tempPaths[$lName]) ? $this->tempPaths[$lName] : Extension::DEFAULT_TEMP_PATH;
        return rtrim($this->httpRequest->getUrl()->basePath, '/') . '/' . $tempPath;
    }