1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-13 00:24:15 +02:00

Flextype: FilesystemTwigExtension - updates.

This commit is contained in:
Awilum
2019-04-25 19:35:18 +03:00
parent 93bf36529b
commit b193880295

View File

@@ -29,12 +29,12 @@ class FilesystemTwigExtension extends \Twig_Extension
];
}
public function has($path)
public function filesystem_has($path)
{
return Filesystem::has($path);
}
public function read($path)
public function filesystem_read($path)
{
return Filesystem::read($path);
}