16 lines
345 B
PHP
16 lines
345 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Copyright (C) 2014-2022 Textalk/Abicart and contributors.
|
||
|
*
|
||
|
* This file is part of Websocket PHP and is free software under the ISC License.
|
||
|
* License text: https://raw.githubusercontent.com/Textalk/websocket-php/master/COPYING
|
||
|
*/
|
||
|
|
||
|
namespace WebSocket\Message;
|
||
|
|
||
|
class Close extends Message
|
||
|
{
|
||
|
protected $opcode = 'close';
|
||
|
}
|