diff options
Diffstat (limited to 'phpBB/phpbb/di')
-rw-r--r-- | phpBB/phpbb/di/container_builder.php | 4 | ||||
-rw-r--r-- | phpBB/phpbb/di/extension/config.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/di/container_builder.php b/phpBB/phpbb/di/container_builder.php index 426c411e07..355d975a5f 100644 --- a/phpBB/phpbb/di/container_builder.php +++ b/phpBB/phpbb/di/container_builder.php @@ -108,11 +108,11 @@ class container_factory /** * Constructor * - * @param \phpbb\config_php $config_php_handler + * @param \phpbb\config_php_file $config_php_handler * @param string $phpbb_root_path Path to the phpbb includes directory. * @param string $php_ext php file extension */ - function __construct(\phpbb\config_php $config_php_handler, $phpbb_root_path, $php_ext) + function __construct(\phpbb\config_php_file $config_php_handler, $phpbb_root_path, $php_ext) { $this->config_php_handler = $config_php_handler; $this->phpbb_root_path = $phpbb_root_path; diff --git a/phpBB/phpbb/di/extension/config.php b/phpBB/phpbb/di/extension/config.php index b25635d7ae..4176df9227 100644 --- a/phpBB/phpbb/di/extension/config.php +++ b/phpBB/phpbb/di/extension/config.php @@ -24,7 +24,7 @@ class config extends Extension /** @var array */ protected $config_php; - public function __construct(\phpbb\config_php $config_php) + public function __construct(\phpbb\config_php_file $config_php) { $this->config_php = $config_php; } |