Skip to content

Commit

Permalink
Merge pull request #5 from A5sys/fix-deprecation-notices
Browse files Browse the repository at this point in the history
FIX deprecation notice about double quote
  • Loading branch information
arnaudgoulpeau authored Dec 2, 2016
2 parents 41492ab + 172139f commit fd2f787
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Resources/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,33 @@ parameters:
services:
# makes the calls to API
qowisio.cloud.api.caller:
class: %qowisio.cloud.api.caller.class%
class: "%qowisio.cloud.api.caller.class%"
arguments:
- %qowisio.cloud.api.auth.endpoint%
- %qowisio.cloud.api.auth.email%
- %qowisio.cloud.api.auth.password%
- %qowisio.cloud.api.data.endpoint%
- "%qowisio.cloud.api.auth.endpoint%"
- "%qowisio.cloud.api.auth.email%"
- "%qowisio.cloud.api.auth.password%"
- "%qowisio.cloud.api.data.endpoint%"

# Get infos about authentication
qowisio.cloud.api.authentication:
class: %qowisio.cloud.api.authentication.class%
class: "%qowisio.cloud.api.authentication.class%"
arguments:
- "@qowisio.cloud.api.caller"

# Get infos about devices and their sensors
qowisio.cloud.api.devices.and.sensors:
class: %qowisio.cloud.api.devices.and.sensors.class%
class: "%qowisio.cloud.api.devices.and.sensors.class%"
arguments:
- "@qowisio.cloud.api.caller"

# Get infos about sensor measures
qowisio.cloud.api.measures:
class: %qowisio.cloud.api.measures.class%
class: "%qowisio.cloud.api.measures.class%"
arguments:
- "@qowisio.cloud.api.caller"

# Get info about the specific tracker device
qowisio.tracker:
class: %qowisio.tracker.class%
class: "%qowisio.tracker.class%"
arguments:
- "@qowisio.cloud.api.measures"

0 comments on commit fd2f787

Please sign in to comment.