Allow other transport options to be used i.e. Http, Https, Guzzle etc...

This commit is contained in:
Milan Magudia 2014-05-22 16:18:08 +01:00
parent 70ad5c9b37
commit 2c208a4f10

View file

@ -92,6 +92,7 @@ class Configuration implements ConfigurationInterface
'port' => $v['port'],
'logger' => isset($v['logger']) ? $v['logger'] : null,
'headers' => isset($v['headers']) ? $v['headers'] : null,
'transport' => isset($v['transport']) ? $v['transport'] : null,
)
)
);
@ -132,6 +133,7 @@ class Configuration implements ConfigurationInterface
->useAttributeAsKey('name')
->prototype('scalar')->end()
->end()
->scalarNode('transport')->end()
->scalarNode('timeout')->end()
->end()
->end()