for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace YEntWeChat\Message;
/**
* Class Raw.
*
* @property string $content
*/
class Raw extends AbstractMessage
{
* @var string
protected $type = 'raw';
* Properties.
* @var array
protected $properties = ['content'];
* Constructor.
* @param string $content
public function __construct($content)
parent::__construct(['content' => strval($content)]);
}