This commit is contained in:
2021-01-11 11:19:34 +08:00
parent b1de495b44
commit 92865f3da8
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -33,7 +33,6 @@ trait Server
/** /**
* @param array $settings * @param array $settings
* @return mixed|void
*/ */
public function set(array $settings) public function set(array $settings)
{ {
+2 -2
View File
@@ -14,11 +14,11 @@ abstract class Tcp extends Server implements Service
use \HttpServer\Service\Abstracts\Server; use \HttpServer\Service\Abstracts\Server;
/** @var Closure|array */ /** @var Closure|array */
public $unpack; public array|Closure $unpack;
/** @var Closure|array */ /** @var Closure|array */
public $pack; public array|Closure $pack;
} }