aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2012-11-13 09:28:56 -0500
committerDavid King <imkingdavid@gmail.com>2012-11-16 16:45:29 -0500
commit4b6d538b062a56f55ba221ac8437b4bfc712a475 (patch)
tree7f3e5a6a124d7d0a3eca6a604f14bd522fe5cb5a /phpBB
parent7687f069611b35f81c6d0fc87e46b9bb0821d616 (diff)
downloadforums-4b6d538b062a56f55ba221ac8437b4bfc712a475.tar
forums-4b6d538b062a56f55ba221ac8437b4bfc712a475.tar.gz
forums-4b6d538b062a56f55ba221ac8437b4bfc712a475.tar.bz2
forums-4b6d538b062a56f55ba221ac8437b4bfc712a475.tar.xz
forums-4b6d538b062a56f55ba221ac8437b4bfc712a475.zip
[feature/controller] Rename kernel pass class properly
PHPBB3-10864
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/common.php2
-rw-r--r--phpBB/download/file.php2
-rw-r--r--phpBB/includes/di/pass/kernel_pass.php (renamed from phpBB/includes/di/pass/kernel.php)2
-rw-r--r--phpBB/install/database_update.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index b0bc281b45..a5ffcea8e4 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -93,7 +93,7 @@ $phpbb_container = phpbb_create_dumped_container_unless_debug(
),
array(
new phpbb_di_pass_collection_pass(),
- new phpbb_di_pass_kernel(),
+ new phpbb_di_pass_kernel_pass(),
),
$phpbb_root_path,
$phpEx
diff --git a/phpBB/download/file.php b/phpBB/download/file.php
index eed713b891..73b9e0a9f2 100644
--- a/phpBB/download/file.php
+++ b/phpBB/download/file.php
@@ -64,7 +64,7 @@ if (isset($_GET['avatar']))
),
array(
new phpbb_di_pass_collection_pass(),
- new phpbb_di_pass_kernel(),
+ new phpbb_di_pass_kernel_pass(),
),
$phpbb_root_path,
$phpEx
diff --git a/phpBB/includes/di/pass/kernel.php b/phpBB/includes/di/pass/kernel_pass.php
index 7b190a6236..d186ff2767 100644
--- a/phpBB/includes/di/pass/kernel.php
+++ b/phpBB/includes/di/pass/kernel_pass.php
@@ -18,7 +18,7 @@ if (!defined('IN_PHPBB'))
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
-class phpbb_di_pass_kernel implements CompilerPassInterface
+class phpbb_di_pass_kernel_pass implements CompilerPassInterface
{
/**
* Modify the container before it is passed to the rest of the code
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index b8f5021dfd..377e38c423 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -113,7 +113,7 @@ $phpbb_container = phpbb_create_dumped_container_unless_debug(
),
array(
new phpbb_di_pass_collection_pass(),
- new phpbb_di_pass_kernel(),
+ new phpbb_di_pass_kernel_pass(),
),
$phpbb_root_path,
$phpEx