Skip to content

Commit

Permalink
Incorrect syntax to call load from $loader
Browse files Browse the repository at this point in the history
The > sign was not present for calling the load on $loader
  • Loading branch information
cmnty-peterm committed Oct 22, 2015
1 parent f5a1c2b commit 31fdccf
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 31fdccf

Please sign in to comment.