| Total Complexity | 3 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 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) ?? []; |
|
|
|
|||
| 50 | } |
||
| 51 | |||
| 52 | 1 | public function __toString() |
|
| 55 | } |
||
| 56 | } |
||
| 57 |