for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the slince/smartqq package.
*
* (c) Slince <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Slince\SmartQQ\Entity;
class DiscussMember extends User
{
/**
* @var string
protected $nick;
* @var int
protected $clientType;
protected $status;
* 作用不明.
protected $ruin;
* @return string
public function getNick()
return $this->nick;
}
* @param string $nick
public function setNick($nick)
$this->nick = $nick;
* @return int
public function getClientType()
return $this->clientType;
* @param int $clientType
public function setClientType($clientType)
$this->clientType = $clientType;
public function getStatus()
return $this->status;
* @param string $status
public function setStatus($status)
$this->status = $status;
public function getRuin()
return $this->ruin;
* @param int $ruin
public function setRuin($ruin)
$this->ruin = $ruin;