Fix client configuration missing logger

This commit is contained in:
Császár Dániel 2013-12-10 13:54:50 +01:00
parent 70e6cb2e7e
commit e16ece821d

View file

@ -78,7 +78,7 @@ class Configuration implements ConfigurationInterface
array(
'host' => $v['host'],
'port' => $v['port'],
'logger' => $v['logger']
'logger' => isset($v['logger']) ? $v['logger'] : null
)
)
);
@ -91,7 +91,7 @@ class Configuration implements ConfigurationInterface
'servers' => array(
array(
'url' => $v['url'],
'logger' => $v['logger']
'logger' => isset($v['logger']) ? $v['logger'] : null
)
)
);