for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EasyIM\TencentIM\Kernel\OfflinePushInfo;
use EasyIM\Kernel\Parameter;
/**
* Class AndroidInfo
*
* @package EasyIM\TencentIM\Kernel\OfflinePushInfo
* @author longing <[email protected]>
*/
class AndroidInfo extends Parameter
{
* @var string[]
protected $properties = [
'Sound',
'OPPOChannelID',
];
* @param string $value
* @return $this
public function setSound(string $value)
$this->setAttribute('Sound', $value);
return $this;
}
public function setOPPOChannelID(string $value)
$this->setAttribute('OPPOChannelID', $value);