@@ -212,7 +212,8 @@ discard block |
||
212 | 212 | |
213 | 213 | /** |
214 | 214 | * 连接签名方法 |
215 | - * @param $method string 请求方式 {GET, POST, PUT, DELETE} |
|
215 | + * @param string $method string 请求方式 {GET, POST, PUT, DELETE} |
|
216 | + * @param string $date |
|
216 | 217 | * @return string 签名字符串 |
217 | 218 | */ |
218 | 219 | private function sign($method, $uri, $date, $length) |
@@ -229,7 +230,7 @@ discard block |
||
229 | 230 | * @param array $headers 请求需要的特殊HTTP HEADERS |
230 | 231 | * @param array $body 需要POST发送的数据 |
231 | 232 | * @param null $file_handle |
232 | - * @return mixed |
|
233 | + * @return string |
|
233 | 234 | * @throws UpYunAuthorizationException |
234 | 235 | * @throws UpYunException |
235 | 236 | * @throws UpYunForbiddenException |
@@ -373,7 +374,7 @@ discard block |
||
373 | 374 | * |
374 | 375 | * @param string $header_string |
375 | 376 | * |
376 | - * @return mixed |
|
377 | + * @return string |
|
377 | 378 | */ |
378 | 379 | private function _getErrorMessage($header_string) |
379 | 380 | { |
@@ -405,6 +406,9 @@ discard block |
||
405 | 406 | |
406 | 407 | class UpYunAuthorizationException extends UpYunException |
407 | 408 | { |
409 | + /** |
|
410 | + * @param string|null $message |
|
411 | + */ |
|
408 | 412 | public function __construct($message, $code = 0, Exception $previous = null) |
409 | 413 | { |
410 | 414 | parent::__construct($message, 401, $previous); |
@@ -413,6 +417,9 @@ discard block |
||
413 | 417 | |
414 | 418 | class UpYunForbiddenException extends UpYunException |
415 | 419 | { |
420 | + /** |
|
421 | + * @param string|null $message |
|
422 | + */ |
|
416 | 423 | public function __construct($message, $code = 0, Exception $previous = null) |
417 | 424 | { |
418 | 425 | parent::__construct($message, 403, $previous); |
@@ -421,6 +428,9 @@ discard block |
||
421 | 428 | |
422 | 429 | class UpYunNotFoundException extends UpYunException |
423 | 430 | { |
431 | + /** |
|
432 | + * @param string|null $message |
|
433 | + */ |
|
424 | 434 | public function __construct($message, $code = 0, Exception $previous = null) |
425 | 435 | { |
426 | 436 | parent::__construct($message, 404, $previous); |
@@ -429,6 +439,9 @@ discard block |
||
429 | 439 | |
430 | 440 | class UpYunNotAcceptableException extends UpYunException |
431 | 441 | { |
442 | + /** |
|
443 | + * @param string|null $message |
|
444 | + */ |
|
432 | 445 | public function __construct($message, $code = 0, Exception $previous = null) |
433 | 446 | { |
434 | 447 | parent::__construct($message, 406, $previous); |
@@ -437,6 +450,9 @@ discard block |
||
437 | 450 | |
438 | 451 | class UpYunServiceUnavailable extends UpYunException |
439 | 452 | { |
453 | + /** |
|
454 | + * @param string|null $message |
|
455 | + */ |
|
440 | 456 | public function __construct($message, $code = 0, Exception $previous = null) |
441 | 457 | { |
442 | 458 | parent::__construct($message, 503, $previous); |