Skip to content

Commit

Permalink
Merge pull request #232 from pfrenssen/symfony-3-compatibility
Browse files Browse the repository at this point in the history
Compatibility with Symfony 3.0

Signed-off-by: Jonathan Hedstrom <jhedstrom@gmail.com>
  • Loading branch information
jhedstrom committed Dec 22, 2015
1 parent 6cb2a89 commit 6bfff49
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
arguments:
- %drupal.driver.drupal.drupal_root%
- %mink.base_url%
- @drupal.driver.random
- "@drupal.driver.random"
tags:
- { name: drupal.driver, alias: drupal }
drupal.driver.cores.6:
Expand All @@ -27,20 +27,20 @@ services:
arguments:
- %drupal.driver.drupal.drupal_root%
- %mink.base_url%
- @drupal.driver.random
- "@drupal.driver.random"
drupal.driver.cores.7:
class: %drupal.driver.cores.7.class%
tags:
- { name: drupal.core, alias: 7 }
arguments:
- %drupal.driver.drupal.drupal_root%
- %mink.base_url%
- @drupal.driver.random
- "@drupal.driver.random"
drupal.driver.cores.8:
class: %drupal.driver.cores.8.class%
tags:
- { name: drupal.core, alias: 8 }
arguments:
- %drupal.driver.drupal.drupal_root%
- %mink.base_url%
- @drupal.driver.random
- "@drupal.driver.random"
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ services:
- %drupal.driver.drush.alias%
- %drupal.driver.drush.root%
- %drupal.driver.drush.binary%
- @drupal.driver.random
- "@drupal.driver.random"
tags:
- { name: drupal.driver, alias: drush }
10 changes: 5 additions & 5 deletions src/Drupal/DrupalExtension/ServiceContainer/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ services:
class: %drupal.drupal.class%
arguments:
- {}
- @drupal.random
- "@drupal.random"
drupal.random:
class: %drupal.random.class%
drupal.context.initializer:
class: %drupal.context.initializer.class%
arguments:
- @drupal.drupal
- "@drupal.drupal"
- %drupal.parameters%
- @hook.dispatcher
- "@hook.dispatcher"
tags:
- { name: context.initializer }
drupal.context.environment.reader:
class: %drupal.context.environment.reader.class%
arguments:
- @drupal.drupal
- "@drupal.drupal"
- %drupal.parameters%
tags:
- { name: environment.reader }
Expand All @@ -60,7 +60,7 @@ services:
drupal.listener.driver:
class: %drupal.listener.drivers.class%
arguments:
- @drupal.drupal
- "@drupal.drupal"
- %drupal.parameters%
tags:
- { name: event_dispatcher.subscriber, priority: 0 }
Expand Down

0 comments on commit 6bfff49

Please sign in to comment.