| 123456789101112131415161718192021222324252627 | <?phpnamespace OSS\Result;use OSS\Core\OssException;/** * Class InitiateBucketWormResult * @package OSS\Result */class InitiateBucketWormResult extends Result{    /**     * Get the value of worm-id from response headers     *     * @return int     * @throws OssException     */    protected function parseDataFromResponse()    {        $header = $this->rawResponse->header;        if (isset($header["x-oss-worm-id"])) {            return strval($header["x-oss-worm-id"]);        }        throw new OssException("cannot get worm-id");    }}
 |