Kraken\_Module\Filesystem\FilesystemTest::getPrefixed PHP Method

getPrefixed() public method

public getPrefixed ( string $path, null $replace = null, string $with = '' ) : string
$path string
$replace null
$with string
return string
    public function getPrefixed($path, $replace = null, $with = '')
    {
        if ($path === '' || $path === '/') {
            return $path;
        }
        return $this->getPath($path, $replace, $with);
    }