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