Skip to content

Commit

Permalink
Merge pull request #1 from cmnty-peterm/patch-1
Browse files Browse the repository at this point in the history
Incorrect syntax to call load from $loader
  • Loading branch information
K-Phoen committed Oct 22, 2015
2 parents f5a1c2b + 31fdccf commit ed8bea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/KPhoenRulerZExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private function configureExecutors(YamlFileLoader $loader, array $config)
{
foreach ($this->supportedExecutors as $executor) {
if ($config['executors'][$executor]) {
$loader-load(sprintf('executors/%s.yml', $executor));
$loader->load(sprintf('executors/%s.yml', $executor));
}
}
}
Expand Down

0 comments on commit ed8bea9

Please sign in to comment.