first commit

This commit is contained in:
2021-11-03 15:17:52 +08:00
commit 000d084abf
48 changed files with 2317 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace Server\Events;
use Swoole\Server;
/**
*
*/
class OnWorkerStop
{
/**
* @param Server $server
* @param int $workerId
*/
public function __construct(public Server $server, public int $workerId)
{
}
}