diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-09-26 00:58:37 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-09-26 00:58:37 +0200 |
commit | b27fc70a7d889ad9ed424666059b718eeb82cb05 (patch) | |
tree | f0a871aa9e0b74da3e6352cc35c9aec554c3844f /phpBB/includes | |
parent | 03639c081cfe92dea223b6c2125e94319ae001ce (diff) | |
download | forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.tar forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.tar.gz forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.tar.bz2 forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.tar.xz forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.zip |
[ticket/11866] More namespaces
PHPBB3-11866
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_container.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/functions_container.php b/phpBB/includes/functions_container.php index 62559fbf36..667d27fd20 100644 --- a/phpBB/includes/functions_container.php +++ b/phpBB/includes/functions_container.php @@ -152,12 +152,12 @@ function phpbb_create_update_container($phpbb_root_path, $php_ext, $config_path) return phpbb_create_compiled_container( $config_file, array( - new phpbb_di_extension_config($config_file), - new phpbb_di_extension_core($config_path), + new phpbb\di\extension\config($config_file), + new phpbb\di\extension\core($config_path), ), array( - new phpbb_di_pass_collection_pass(), - new phpbb_di_pass_kernel_pass(), + new phpbb\di\pass\collection_pass(), + new phpbb\di\pass\kernel_pass(), ), $phpbb_root_path, $php_ext |