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
 /**
  * @param string $endpointUrl
  * @return \stdClass
  */
 public function delete($endpointUrl)
 {
     return $this->restClient->delete($endpointUrl);
 }