mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-23 18:38:53 +00:00
This type of use was deprecated in symfony 2.8 and will be dropped in 3.x. Also see: https://github.com/symfony/symfony/pull/16285 PHPBB3-14717
20 lines
551 B
YAML
20 lines
551 B
YAML
services:
|
|
foo_bar.controller:
|
|
class: foo\bar\controller\controller
|
|
arguments:
|
|
- '@controller.helper'
|
|
- '@path_helper'
|
|
- '@template'
|
|
- '@config'
|
|
- '@user'
|
|
- '%core.root_path%'
|
|
- '%core.php_ext%'
|
|
|
|
foo_bar.listener.permission:
|
|
class: foo\bar\event\permission
|
|
tags:
|
|
- { name: event.listener }
|
|
foo_bar.listener.user_setup:
|
|
class: foo\bar\event\user_setup
|
|
tags:
|
|
- { name: event.listener }
|