From b1938802951f984e7bae0e5e58b1bdf8da5a276e Mon Sep 17 00:00:00 2001 From: Awilum Date: Thu, 25 Apr 2019 19:35:18 +0300 Subject: [PATCH] Flextype: FilesystemTwigExtension - updates. --- flextype/twig/FilesystemTwigExtension.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flextype/twig/FilesystemTwigExtension.php b/flextype/twig/FilesystemTwigExtension.php index 4f1618c3..54f67e3d 100644 --- a/flextype/twig/FilesystemTwigExtension.php +++ b/flextype/twig/FilesystemTwigExtension.php @@ -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); }