| 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 | public function __construct(string $content) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param array $appends |
||
| 43 | * @param bool $withType |
||
| 44 | * |
||
| 45 | * @return array |
||
| 46 | */ |
||
| 47 | public function transformForJsonRequest(array $appends = [], $withType = true): array |
||
| 51 | |||
| 52 | public function __toString() |
||
| 56 | } |
||
| 57 |