GITLAB

OTHER_COMPANY_PROJECTS / ota

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • ota
  • common
  • exts
  • OSS
  • Result
  • BodyResult.php
  • abb310b5   删除冗余的代码 ... Browse Code »
    配置系统的文件
    xu
    2019-10-27 06:04:59 +0800  
BodyResult.php 294 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?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;
    }
}