| 1 | <?php |
||
| 19 | trait ResponseTrait |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | abstract public function jsonSerialize(); |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | abstract public function __toString(); |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Render object as HTML or JSON |
||
| 33 | * |
||
| 34 | * @param string $type |
||
| 35 | * |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | 3 | public function render($type = 'HTML') |
|
| 51 | } |
||
| 52 |