1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-15 06:06:32 +02:00

[ticket/11388] Remove typehints (causing tests to fail)

PHPBB3-11388
This commit is contained in:
Nathaniel Guse
2013-07-11 11:24:45 -05:00
parent a846048918
commit dd7f9f08d5

View File

@ -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;