mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[feature/controller-new] Rename kernel compiler pass class
PHPBB3-10864
This commit is contained in:
parent
5c86a1660d
commit
97957d6792
2 changed files with 2 additions and 1 deletions
|
@ -93,6 +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(),
|
||||||
),
|
),
|
||||||
$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_event_kernel_compiler_pass implements CompilerPassInterface
|
class phpbb_di_pass_kernel 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
|
Loading…
Add table
Reference in a new issue