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

delete() 공개 메소드

public delete ( string $endpointUrl ) : stdClass
$endpointUrl string
리턴 stdClass
    public function delete($endpointUrl)
    {
        return $this->send('DELETE', $endpointUrl);
    }

Usage Example

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