22 lines
335 B
PHP
Executable File
22 lines
335 B
PHP
Executable File
<?php
|
|
|
|
namespace FedaPay\ApiOperations;
|
|
|
|
/**
|
|
* trait Update
|
|
*/
|
|
trait Delete
|
|
{
|
|
/**
|
|
* Send a detele request
|
|
* @param array $headers
|
|
*/
|
|
public function delete($headers = [])
|
|
{
|
|
$path = $this->instanceUrl();
|
|
static::_staticRequest('delete', $path, [], $headers);
|
|
|
|
return $this;
|
|
}
|
|
}
|