Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #202 from pppdns/patch-1
Browse files Browse the repository at this point in the history
Fixed fatal error in dependency injection config
  • Loading branch information
stephpy committed May 16, 2017
2 parents 281e327 + 7244747 commit 744b43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/SpyTimelineExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function load(array $configs, ContainerBuilder $container)

// notifiers
$notifiers = $config['notifiers'];
$definition = new Reference($config['spread']['deployer']);
$definition = $container->getDefinition($config['spread']['deployer']);

foreach ($notifiers as $notifier) {
$definition->addMethodCall('addNotifier', array(new Reference($notifier)));
Expand Down

0 comments on commit 744b43c

Please sign in to comment.