BasicValetDriver::asHtmlIndexFileInDirectory PHP Method

asHtmlIndexFileInDirectory() protected method

Format the site path and URI with a trailing "index.html".
protected asHtmlIndexFileInDirectory ( string $sitePath, string $uri ) : string
$sitePath string
$uri string
return string
    protected function asHtmlIndexFileInDirectory($sitePath, $uri)
    {
        return $sitePath . rtrim($uri, '/') . '/index.html';
    }