You are here

public function KeyClient::delete in Lockr 7

Same name and namespace in other branches
  1. 7.2 vendor/lockr/lockr-client/src/KeyClient.php \Lockr\KeyClient::delete()

Deletes a key from Lockr.

Parameters

string $name The key name.:

File

src/Lockr/KeyClient.php, line 112

Class

KeyClient

Namespace

Lockr

Code

public function delete($name) {
  $this->client
    ->delete($this
    ->uri($name));
}