Issues (83)

src/Kernel/Messages/Raw.php (1 issue)

1
<?php
2
3
/*
4
 * This file is part of the overtrue/wechat.
5
 *
6
 * (c) overtrue <[email protected]>
7
 *
8
 * This source file is subject to the MIT license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
12
namespace EasyWeChat\Kernel\Messages;
13
14
/**
15
 * Class Raw.
16
 */
17
class Raw extends Message
18
{
19
    /**
20
     * @var string
21
     */
22
    protected $type = 'raw';
23
24
    /**
25
     * Properties.
26
     *
27
     * @var array
28
     */
29
    protected $properties = ['content'];
30
31
    /**
32
     * Constructor.
33
     *
34
     * @param string $content
35
     */
36 5
    public function __construct(string $content)
37
    {
38 5
        parent::__construct(['content' => strval($content)]);
39 5
    }
40
41
    /**
42
     * @param array $appends
43
     * @param bool  $withType
44
     *
45
     * @return array
46
     */
47 2
    public function transformForJsonRequest(array $appends = [], $withType = true): array
48
    {
49 2
        return json_decode($this->content, true) ?? [];
0 ignored issues
show
Bug Best Practice introduced by
The property content does not exist on EasyWeChat\Kernel\Messages\Raw. Since you implemented __get, consider adding a @property annotation.
Loading history...
50
    }
51
52 1
    public function __toString()
53
    {
54 1
        return $this->get('content') ?? '';
55
    }
56
}
57