b2728947a3
This reverts commit fdf58326
17 lines
194 B
PHP
17 lines
194 B
PHP
<?php
|
|
|
|
namespace Kiri\Server\Events;
|
|
|
|
use Swoole\Server;
|
|
|
|
class OnManagerStart
|
|
{
|
|
|
|
/**
|
|
* @param Server $server
|
|
*/
|
|
public function __construct(public Server $server)
|
|
{
|
|
}
|
|
}
|