You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
517 B
22 lines
517 B
<?php
|
|
|
|
include_once dirname(dirname(__FILE__)). "/Core/OssException.php";
|
|
include_once dirname(dirname(__FILE__)). "/OssClient.php";
|
|
|
|
/**
|
|
*
|
|
* @package OSS\Result
|
|
*/
|
|
class SymlinkResult extends Result
|
|
{
|
|
/**
|
|
* @return string
|
|
* @throws OssException
|
|
*/
|
|
protected function parseDataFromResponse()
|
|
{
|
|
$this->rawResponse->header[OssClient::OSS_SYMLINK_TARGET] = rawurldecode($this->rawResponse->header[OssClient::OSS_SYMLINK_TARGET]);
|
|
return $this->rawResponse->header;
|
|
}
|
|
}
|
|
|
|
|