Whoops\Util\TemplateHelper::shorten PHP Method

shorten() public method

Replace the part of the path that all files have in common.
public shorten ( string $path ) : string
$path string
return string
    public function shorten($path)
    {
        $dirname = dirname(dirname(dirname(dirname(dirname(dirname(__DIR__))))));
        if ($dirname != "/") {
            $path = str_replace($dirname, '…', $path);
        }
        return $path;
    }