public function Lockr::delete in Lockr 7
Same name and namespace in other branches
- 7.2 vendor/lockr/lockr-client/src/Lockr.php \Lockr\Lockr::delete()
File
- src/
Lockr/ Lockr.php, line 105
Class
- Lockr
- Primary interface for Lockr API calls.
Namespace
LockrCode
public function delete($uri) {
$uri = $this->partner
->getWriteUri() . $uri;
return $this
->request('DELETE', $uri, $this->partner
->requestOptions());
}