You are here

public function Lockr::delete in Lockr 7.2

Same name and namespace in other branches
  1. 7 src/Lockr/Lockr.php \Lockr\Lockr::delete()

File

vendor/lockr/lockr-client/src/Lockr.php, line 110

Class

Lockr
Primary interface for Lockr API calls.

Namespace

Lockr

Code

public function delete($uri) {
  $uri = $this->partner
    ->getWriteUri() . $uri;
  return $this
    ->request('DELETE', $uri, $this->partner
    ->requestOptions());
}