mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
19 lines
294 B
PHP
19 lines
294 B
PHP
<?php
|
|
|
|
namespace OSS\Result;
|
|
|
|
|
|
/**
|
|
* Class BodyResult
|
|
* @package OSS\Result
|
|
*/
|
|
class BodyResult extends Result
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function parseDataFromResponse()
|
|
{
|
|
return empty($this->rawResponse->body) ? "" : $this->rawResponse->body;
|
|
}
|
|
} |