mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 08:34:02 +01:00
14 lines
205 B
PHP
14 lines
205 B
PHP
<?php
|
|
|
|
namespace app\modules\server\events;
|
|
|
|
use Ratchet\WebSocket\Version\RFC6455\Connection;
|
|
|
|
class ConnectionEvent extends ServerEvent
|
|
{
|
|
/**
|
|
* @var Connection
|
|
*/
|
|
public $connection;
|
|
}
|