Mailgun\Connection\RestClient::put PHP 메소드

put() 공개 메소드

public put ( string $endpointUrl, mixed $putData ) : stdClass
$endpointUrl string
$putData mixed
리턴 stdClass
    public function put($endpointUrl, $putData)
    {
        return $this->send('PUT', $endpointUrl, $putData);
    }

Usage Example

예제 #1
0
파일: Mailgun.php 프로젝트: lhas/pep
 /**
  * @param string $endpointUrl
  * @param array $putData
  * @return \stdClass
  */
 public function put($endpointUrl, $putData)
 {
     return $this->restClient->put($endpointUrl, $putData);
 }