From 7b4c3551902b8c74a1636845017a8a3bbb14bcd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Sat, 16 Sep 2017 12:30:36 +0200 Subject: [PATCH] [ticket/15366] Remove useless code PHPBB3-15366 --- phpBB/phpbb/template/twig/extension.php | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/phpBB/phpbb/template/twig/extension.php b/phpBB/phpbb/template/twig/extension.php index da290529c5..9374a89171 100644 --- a/phpBB/phpbb/template/twig/extension.php +++ b/phpBB/phpbb/template/twig/extension.php @@ -86,7 +86,7 @@ class extension extends \Twig_Extension return array( new \Twig_SimpleFunction('lang', array($this, 'lang')), new \Twig_SimpleFunction('lang_defined', array($this, 'lang_defined')), - new \Twig_SimpleFunction('get_class', array($this, 'get_class')), + new \Twig_SimpleFunction('get_class', 'get_class'), ); } @@ -194,16 +194,4 @@ class extension extends \Twig_Extension { return call_user_func_array([$this->language, 'is_set'], [$key]); } - - /* - * Returns the name of the class of an object - * - * @param object $object The object - * - * @return string - */ - public function get_class($object) - { - return get_class($object); - } }