8000 compoatibility to symfony 3.0 · pguso/LswApiCallerBundle@29db89c · GitHub
[go: up one dir, main page]

Skip to content

Commit 29db89c

Browse files
committed
compoatibility to symfony 3.0
Error Message: The reserved indicator "@" cannot start a plain scalar; you need to quote the scalar at line Related to pull request: symfony/symfony#16285
1 parent 4397fff commit 29db89c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Resources/config/services.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ parameters:
77
services:
88
api_caller:
99
class: %api_caller.class%
10-
arguments: [%api_caller.options%,@api_call_logger]
10+
arguments: [%api_caller.options%, "@api_call_logger"]
1111
api_call_logger:
1212
class: %api_call_logger.class%
13-
arguments: [@logger]
13+
arguments: [ "@logger" ]
1414
tags:
1515
- { name: monolog.logger, channel:api_caller }
1616
api_caller.data_collector:
1717
class: %api_caller.data_collector.class%
18-
arguments: [@api_call_logger]
18+
arguments: [ "@api_call_logger" ]
1919
tags:
20-
- { name: data_collector, template: %api_caller.data_collector.template%, id:"api"}
20+
- { name: data_collector, template: %api_caller.data_collector.template%, id:"api"}

0 commit comments

Comments
 (0)
0