diff options
author | David King <imkingdavid@gmail.com> | 2013-09-25 16:49:12 -0700 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2013-09-25 16:49:12 -0700 |
commit | 779688b56b4fc22f975cb1b2a39b55d4b9afc231 (patch) | |
tree | df087d6bdc7343527a71c1c78846e789d99ae8b4 /phpBB/includes/functions_container.php | |
parent | 427f73a3238e54f1a3e44047716c88ee93c7fcfe (diff) | |
parent | 6d5be041e46b65c4ac60bc0f66cc365988593775 (diff) | |
download | forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.tar forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.tar.gz forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.tar.bz2 forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.tar.xz forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.zip |
Merge pull request #1733 from nickvergessen/ticket/11866
Ticket/11866 Fix some more namespace issues
Diffstat (limited to 'phpBB/includes/functions_container.php')
-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 |