mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 14:48:53 +00:00
[ticket/11152] Rename collection to collection_pass
PHPBB3-11152
This commit is contained in:
parent
bdbf7d5de6
commit
3e4d3761fd
4 changed files with 4 additions and 4 deletions
|
@ -106,7 +106,7 @@ $phpbb_container = phpbb_create_dumped_container_unless_debug(
|
||||||
new phpbb_di_extension_core($phpbb_root_path),
|
new phpbb_di_extension_core($phpbb_root_path),
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
new phpbb_di_pass_collection('cron.task_collection', 'cron.task'),
|
new phpbb_di_pass_collection_pass('cron.task_collection', 'cron.task'),
|
||||||
),
|
),
|
||||||
$phpbb_root_path,
|
$phpbb_root_path,
|
||||||
$phpEx
|
$phpEx
|
||||||
|
|
|
@ -65,7 +65,7 @@ if (isset($_GET['avatar']))
|
||||||
new phpbb_di_extension_core($phpbb_root_path),
|
new phpbb_di_extension_core($phpbb_root_path),
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
new phpbb_di_pass_collection('cron.task_collection', 'cron.task'),
|
new phpbb_di_pass_collection_pass('cron.task_collection', 'cron.task'),
|
||||||
),
|
),
|
||||||
$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_collection implements CompilerPassInterface
|
class phpbb_di_pass_collection_pass implements CompilerPassInterface
|
||||||
{
|
{
|
||||||
private $collection_service;
|
private $collection_service;
|
||||||
private $service_tag;
|
private $service_tag;
|
|
@ -123,7 +123,7 @@ $phpbb_container = phpbb_create_dumped_container_unless_debug(
|
||||||
new phpbb_di_extension_core($phpbb_root_path),
|
new phpbb_di_extension_core($phpbb_root_path),
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
new phpbb_di_pass_collection('cron.task_collection', 'cron.task'),
|
new phpbb_di_pass_collection_pass('cron.task_collection', 'cron.task'),
|
||||||
),
|
),
|
||||||
$phpbb_root_path,
|
$phpbb_root_path,
|
||||||
$phpEx
|
$phpEx
|
||||||
|
|
Loading…
Add table
Reference in a new issue