Devise\Media\Categories\CategoryPaths::toDot PHP Method

toDot() public method

Convert slashes into dots in the path
public toDot ( string $path ) : string
$path string
return string
    public function toDot($path)
    {
        return implode('.', explode('/', $path));
    }