phpbb/tests/functional/fixtures/ext/foo/bar/config/services.yml
Marc Alexander 89461d982c [ticket/14717] Quote strings beginning with @ or % in yaml definitions
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
2016-07-23 16:23:42 +02:00

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 }