Files
HRM-System/vendor/fedapay/fedapay-php/lib/ApiOperations/Delete.php
2026-04-13 08:19:53 +08:00

22 lines
335 B
PHP

<?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;
}
}