ZwiiCMS/core/class/sitemap/FileSystem.class.php
fredtempez 2f332d2bc3 Revert "Merge branch '10500' into 11000"
This reverts commit 6d576a16a6, reversing
changes made to 7766c16ed9.
2021-03-10 18:57:41 +01:00

37 lines
705 B
PHP
Executable File

<?php
namespace Icamys\SitemapGenerator;
class FileSystem
{
public function file_get_contents($filepath)
{
return file_get_contents($filepath);
}
public function file_put_contents($filepath, $content, $flags = 0)
{
return file_put_contents($filepath, $content, $flags);
}
public function file_exists($filepath)
{
return file_exists($filepath);
}
public function rename($oldname, $newname)
{
return rename($oldname, $newname);
}
public function copy($source, $destination)
{
return copy($source, $destination);
}
public function unlink($filepath)
{
return unlink($filepath);
}
}