Your IP : 216.73.217.143


Current Path : /home/eolienneia/www/templates/yootheme/vendor/yootheme/http-server/src/
Upload File :
Current File : /home/eolienneia/www/templates/yootheme/vendor/yootheme/http-server/src/UrlResolver.php

<?php

namespace YOOtheme;

class UrlResolver
{
    public static function resolve(Config $config, $path, $parameters, $secure, callable $next)
    {
        $root = $config('app.rootDir');
        $path = Path::resolveAlias($path);

        if (Path::isBasePath($root, $path)) {
            $path = Path::relative($root, $path);
        }

        return $next($path, $parameters, $secure);
    }
}