aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-07-11 11:24:45 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-07-11 11:24:45 -0500
commitdd7f9f08d5b62f5060c89af92989451ca27de43b (patch)
treeda77f0636ab1a07cb5d2910ffb317e3ef8c5697e
parenta846048918a0e54a01cfd8ea72bf383c354aac47 (diff)
downloadforums-dd7f9f08d5b62f5060c89af92989451ca27de43b.tar
forums-dd7f9f08d5b62f5060c89af92989451ca27de43b.tar.gz
forums-dd7f9f08d5b62f5060c89af92989451ca27de43b.tar.bz2
forums-dd7f9f08d5b62f5060c89af92989451ca27de43b.tar.xz
forums-dd7f9f08d5b62f5060c89af92989451ca27de43b.zip
[ticket/11388] Remove typehints (causing tests to fail)
PHPBB3-11388
-rw-r--r--phpBB/includes/template/twig/twig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template/twig/twig.php b/phpBB/includes/template/twig/twig.php
index d5c12dc713..f5638972a3 100644
--- a/phpBB/includes/template/twig/twig.php
+++ b/phpBB/includes/template/twig/twig.php
@@ -109,7 +109,7 @@ class phpbb_template_twig implements phpbb_template
* @param phpbb_extension_manager $extension_manager extension manager, if null then template events will not be invoked
* @param string $adm_relative_path relative path to adm directory
*/
- public function __construct($phpbb_root_path, $php_ext, phpbb_config $config, phpbb_user $user, phpbb_template_context $context, phpbb_extension_manager $extension_manager = null, $adm_relative_path = null)
+ public function __construct($phpbb_root_path, $php_ext, $config, $user, phpbb_template_context $context, phpbb_extension_manager $extension_manager = null, $adm_relative_path = null)
{
$this->phpbb_root_path = $phpbb_root_path;
$this->adm_relative_path = $adm_relative_path;