Skip to content

Commit

Permalink
Merge pull request #39 from tomaszturkowski/yaml-deprecations
Browse files Browse the repository at this point in the history
Add quotation marks to yaml services definitions to avoid deprecation…
  • Loading branch information
TobiasHauck authored Aug 28, 2016
2 parents 6e0b018 + 71fc02d commit 196c095
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 196c095

Please sign in to comment.