Changed servers to numeric indexes instead of associative indexes

This commit is contained in:
daFish 2012-11-29 10:00:51 +01:00
parent 1bcc518b31
commit e5fef260f2

View file

@ -50,7 +50,7 @@ class Configuration
->then(function($v) { ->then(function($v) {
return array( return array(
'servers' => array( 'servers' => array(
'default' => array( array(
'host' => $v['host'], 'host' => $v['host'],
'port' => $v['port'], 'port' => $v['port'],
) )
@ -63,7 +63,7 @@ class Configuration
->then(function($v) { ->then(function($v) {
return array( return array(
'servers' => array( 'servers' => array(
'default' => array( array(
'url' => $v['url'], 'url' => $v['url'],
) )
) )