for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\Work\GroupRobot\Messages;
/**
* Class Text.
* @author her-cat <[email protected]>
class Text extends Message
{
* @var string
protected $type = 'text';
* @var array
protected $properties = ['content', 'mentioned_list', 'mentioned_mobile_list'];
* Text constructor.
* @param string $content
* @param string|array $userIds
* @param string|array $mobiles
public function __construct(string $content, $userIds = [], $mobiles = [])
parent::__construct([
'content' => $content,
'mentioned_list' => (array)$userIds,
'mentioned_mobile_list' => (array)$mobiles,
]);
}
* @param $userIds
* @return Text
public function mention($userIds)
$this->set('mentioned_list', (array)$userIds);
return $this;
* @param $mobiles
public function mentionByMobile($mobiles)
$this->set('mentioned_mobile_list', (array)$mobiles);