for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DingNotice\Messages;
class Text extends Message
{
public function __construct($content)
$this->message = [
'msgtype' => 'text',
'text' => [
'content' => $content
]
];
}