| 1 | <?php | ||
| 4 | class StringResponse extends BasicTypeResponse implements ResponseInterface | ||
| 5 | { | ||
| 6 | /** | ||
| 7 | * Basic data type for this response | ||
| 8 | * | ||
| 9 | * @var int | ||
| 10 | */ | ||
| 11 | protected $type = self::TYPE_STRING; | ||
| 12 | |||
| 13 | /** | ||
| 14 | * Parse response | ||
| 15 | * | ||
| 16 | * @return string Parsed response | ||
| 17 | */ | ||
| 18 | public function parse() | ||
| 22 | } |