diff options
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/config_php_file.php (renamed from phpBB/phpbb/config_php.php) | 2 | ||||
-rw-r--r-- | phpBB/phpbb/di/container_builder.php | 4 | ||||
-rw-r--r-- | phpBB/phpbb/di/extension/config.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/config_php.php b/phpBB/phpbb/config_php_file.php index 8191023437..5a2fbca0dd 100644 --- a/phpBB/phpbb/config_php.php +++ b/phpBB/phpbb/config_php_file.php @@ -13,7 +13,7 @@ namespace phpbb; -class config_php +class config_php_file { /** @var string phpBB Root Path */ protected $phpbb_root_path; 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; } |