Skip to content

Commit

Permalink
fix symfony3 yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
4rthem committed May 20, 2016
1 parent e6904d6 commit 4478bc6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Resources/config/guess.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
arthem_graphql.mapping.guesser.doctrine:
class: Arthem\GraphQLMapper\Mapping\Guesser\DoctrineGuesser
arguments:
- @doctrine.orm.entity_manager
- "@doctrine.orm.entity_manager"
tags:
- { name: arthem_graphql.mapping_guesser }

Expand Down
2 changes: 1 addition & 1 deletion Resources/config/resolver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
public: false
class: Arthem\GraphQLMapper\Schema\Resolve\DoctrineResolver
arguments:
- @doctrine.orm.entity_manager
- "@doctrine.orm.entity_manager"
tags:
- { name: arthem_graphql.resolver_factory }

Expand Down
10 changes: 5 additions & 5 deletions Resources/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ services:
public: false
class: Arthem\GraphQLMapper\Schema\SchemaFactory
arguments:
- @arthem_graphql.mapping.driver.yaml
- @arthem_graphql.factory.type_resolver
- @arthem_graphql.mapping.guesser
- "@arthem_graphql.mapping.driver.yaml"
- "@arthem_graphql.factory.type_resolver"
- "@arthem_graphql.mapping.guesser"
calls:
- [setCacheDriver, [@arthem_graphql.mapping.cache.file]]
- [setCacheDriver, ["@arthem_graphql.mapping.cache.file"]]

arthem_graphql.manager:
class: Arthem\GraphQLMapper\GraphQLManager
arguments:
- @arthem_graphql.schema_factory
- "@arthem_graphql.schema_factory"

0 comments on commit 4478bc6

Please sign in to comment.