Skip to content

Commit

Permalink
Merge pull request #117 from garyttierney/bug/monolog-config-broken-2.1
Browse files Browse the repository at this point in the history
Added inconsistent naming fix from bug/monolog-config-broken
  • Loading branch information
dragoonis committed Oct 10, 2014
2 parents 5054499 + 1a9a85f commit 0c9c269
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ServiceManager/Config/MonologConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ protected function getHandlerId($name)
/**
* {@inheritDoc}
*/
protected function processConfiguration(array $config, ServiceManager $serviceManager = null)
protected function processConfiguration(array $configs, ServiceManager $serviceManager = null)
{
$alias = $this->getAlias();
if (!isset($configs[$alias])) {
return array();
}

$parameterBag = $serviceManager->get('config.parameter_bag');
$parameterBag = $serviceManager->get('application_parameters');
$config = $configs[$alias];

if (isset($config['handlers'])) {
Expand Down

0 comments on commit 0c9c269

Please sign in to comment.