BasicValetDriver::asPhpIndexFileInDirectory PHP Method

asPhpIndexFileInDirectory() protected method

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