1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <?php
|
| namespace OSS\Result;
|
| use OSS\Core\OssException;
| use OSS\OssClient;
|
| /**
| *
| * @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;
| }
| }
|
|