Files
zhamao-framework/src/ZM/Connection/CQConnection.php
whale 82a1f86bbd update to 1.2.1
add phar build script
2020-05-02 23:27:26 +08:00

24 lines
377 B
PHP

<?php
namespace ZM\Connection;
class CQConnection extends WSConnection
{
public $self_id = null;
public function __construct($server, $fd, $self_id) {
parent::__construct($server, $fd);
$this->self_id = $self_id;
}
public function getQQ(){
return $this->self_id;
}
public function getType() {
return "qq";
}
}