Skip to content

Commit

Permalink
Add quotation marks to yaml services definitions to avoid deprecation…
Browse files Browse the repository at this point in the history
… warnings
  • Loading branch information
tomaszturkowski committed Aug 19, 2016
1 parent 2698ad1 commit 71fc02d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Resources/config/services.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
parameters:
circle.restclient.class: Circle\RestClientBundle\Services\RestClient
circle.restclient.class: "Circle\\RestClientBundle\\Services\\RestClient"

services:
circle.restclient:
class: %circle.restclient.class%
class: "%circle.restclient.class%"
arguments: [ "@circle.curl" ]
circle.curl:
class: Circle\RestClientBundle\Services\Curl
class: "Circle\\RestClientBundle\\Services\\Curl"
arguments: [ "@circle.curl.options.handler" ]
circle.curl.options.handler:
class: Circle\RestClientBundle\Services\CurlOptionsHandler
arguments: [ %circle.restclient.curl.defaults% ]
class: "Circle\\RestClientBundle\\Services\\CurlOptionsHandler"
arguments: [ "%circle.restclient.curl.defaults%" ]

0 comments on commit 71fc02d

Please sign in to comment.