初始化仓库
This commit is contained in:
55
vendor/alibabacloud/client/src/Request/Traits/DeprecatedRoaTrait.php
vendored
Normal file
55
vendor/alibabacloud/client/src/Request/Traits/DeprecatedRoaTrait.php
vendored
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
namespace AlibabaCloud\Client\Request\Traits;
|
||||
|
||||
/**
|
||||
* @package AlibabaCloud\Client\Request\Traits
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
trait DeprecatedRoaTrait
|
||||
{
|
||||
/**
|
||||
* @param $name
|
||||
* @param $value
|
||||
*
|
||||
* @return $this
|
||||
* @deprecated
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function putPathParameter($name, $value)
|
||||
{
|
||||
return $this->pathParameter($name, $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $pathPattern
|
||||
*
|
||||
* @return $this
|
||||
* @deprecated
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function setUriPattern($pathPattern)
|
||||
{
|
||||
return $this->pathPattern($pathPattern);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
* @deprecated
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function getUriPattern()
|
||||
{
|
||||
return $this->pathPattern;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
* @deprecated
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function getPathParameters()
|
||||
{
|
||||
return $this->pathParameters;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user