16 lines
218 B
PHP
16 lines
218 B
PHP
<?php
|
|
|
|
namespace think\worker\websocket;
|
|
|
|
class Event
|
|
{
|
|
public $type;
|
|
public $data;
|
|
|
|
public function __construct($type, $data = null)
|
|
{
|
|
$this->type = $type;
|
|
$this->data = $data;
|
|
}
|
|
}
|