改名
This commit is contained in:
@@ -17,6 +17,7 @@ use HttpServer\Service\WebSocket;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Snowflake\Config;
|
use Snowflake\Config;
|
||||||
|
use Snowflake\Core\ArrayAccess;
|
||||||
use Snowflake\Event;
|
use Snowflake\Event;
|
||||||
use Snowflake\Exception\ComponentException;
|
use Snowflake\Exception\ComponentException;
|
||||||
use Snowflake\Exception\ConfigException;
|
use Snowflake\Exception\ConfigException;
|
||||||
@@ -135,6 +136,9 @@ class Server extends Application
|
|||||||
if (!isset($this->server[$config['type']])) {
|
if (!isset($this->server[$config['type']])) {
|
||||||
throw new Exception('Unknown server type(' . $config['type'] . ').');
|
throw new Exception('Unknown server type(' . $config['type'] . ').');
|
||||||
}
|
}
|
||||||
|
if (isset($config['settings'])) {
|
||||||
|
$settings = ArrayAccess::merge($settings, $config['settings']);
|
||||||
|
}
|
||||||
$server = $this->dispatchCreate($config, $settings);
|
$server = $this->dispatchCreate($config, $settings);
|
||||||
if (isset($config['events'])) {
|
if (isset($config['events'])) {
|
||||||
$this->createEventListen($config);
|
$this->createEventListen($config);
|
||||||
|
|||||||
Reference in New Issue
Block a user