mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 03:54:10 +01:00
[feature/controller] Rename kernel pass class properly
PHPBB3-10864
This commit is contained in:
parent
7687f06961
commit
4b6d538b06
@ -93,7 +93,7 @@ $phpbb_container = phpbb_create_dumped_container_unless_debug(
|
|||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
new phpbb_di_pass_collection_pass(),
|
new phpbb_di_pass_collection_pass(),
|
||||||
new phpbb_di_pass_kernel(),
|
new phpbb_di_pass_kernel_pass(),
|
||||||
),
|
),
|
||||||
$phpbb_root_path,
|
$phpbb_root_path,
|
||||||
$phpEx
|
$phpEx
|
||||||
|
@ -64,7 +64,7 @@ if (isset($_GET['avatar']))
|
|||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
new phpbb_di_pass_collection_pass(),
|
new phpbb_di_pass_collection_pass(),
|
||||||
new phpbb_di_pass_kernel(),
|
new phpbb_di_pass_kernel_pass(),
|
||||||
),
|
),
|
||||||
$phpbb_root_path,
|
$phpbb_root_path,
|
||||||
$phpEx
|
$phpEx
|
||||||
|
@ -18,7 +18,7 @@ if (!defined('IN_PHPBB'))
|
|||||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||||
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
|
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
|
* Modify the container before it is passed to the rest of the code
|
@ -113,7 +113,7 @@ $phpbb_container = phpbb_create_dumped_container_unless_debug(
|
|||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
new phpbb_di_pass_collection_pass(),
|
new phpbb_di_pass_collection_pass(),
|
||||||
new phpbb_di_pass_kernel(),
|
new phpbb_di_pass_kernel_pass(),
|
||||||
),
|
),
|
||||||
$phpbb_root_path,
|
$phpbb_root_path,
|
||||||
$phpEx
|
$phpEx
|
||||||
|
Loading…
x
Reference in New Issue
Block a user