Fix variable name

This commit is contained in:
Alex Bilbie 2012-12-12 11:43:01 +00:00
parent 1be25955d6
commit aa978d3581

View File

@ -75,7 +75,7 @@ class Server
public function __construct($options = null) public function __construct($options = null)
{ {
if ($options !== null) { if ($options !== null) {
$this->config = array_merge($this->config, $options); $this->_config = array_merge($this->_config, $options);
} }
} }