aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/default/container/services.yml
diff options
context:
space:
mode:
authorMateBartus <mate.bartus@gmail.com>2015-04-30 22:40:17 +0200
committerMateBartus <mate.bartus@gmail.com>2015-05-02 23:45:45 +0200
commit74dbaac0394f45955553ff46515404fe5b06bfba (patch)
treec39a492b728395e7b25409a96f25f9a109ea0ef9 /phpBB/config/default/container/services.yml
parent85967425795773b7cb4116bb05adef810fb8bc07 (diff)
downloadforums-74dbaac0394f45955553ff46515404fe5b06bfba.tar
forums-74dbaac0394f45955553ff46515404fe5b06bfba.tar.gz
forums-74dbaac0394f45955553ff46515404fe5b06bfba.tar.bz2
forums-74dbaac0394f45955553ff46515404fe5b06bfba.tar.xz
forums-74dbaac0394f45955553ff46515404fe5b06bfba.zip
[ticket/13800] Make router's extension manager dependency optional
PHPBB3-13800
Diffstat (limited to 'phpBB/config/default/container/services.yml')
-rw-r--r--phpBB/config/default/container/services.yml20
1 files changed, 1 insertions, 19 deletions
diff --git a/phpBB/config/default/container/services.yml b/phpBB/config/default/container/services.yml
index 670ea3bd61..95d624a8ae 100644
--- a/phpBB/config/default/container/services.yml
+++ b/phpBB/config/default/container/services.yml
@@ -15,6 +15,7 @@ imports:
- { resource: services_password.yml }
- { resource: services_profilefield.yml }
- { resource: services_report.yml }
+ - { resource: services_routing.yml }
- { resource: services_text_formatter.yml }
- { resource: services_twig.yml }
- { resource: services_user.yml }
@@ -157,25 +158,6 @@ services:
- null
- %core.disable_super_globals%
- router:
- class: phpbb\routing\router
- arguments:
- - @filesystem
- - @ext.manager
- - %core.root_path%
- - %core.php_ext%
- - %core.environment%
-
- router.listener:
- class: Symfony\Component\HttpKernel\EventListener\RouterListener
- arguments:
- - @router
- - null
- - null
- - @request_stack
- tags:
- - { name: kernel.event_subscriber }
-
# WARNING: The Symfony request does not escape the input and should be used very carefully
# prefer the phpbb request (service @request) as possible
symfony_request: