You are here

public function KeyClient::delete in Lockr 7.2

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

Deletes a key from Lockr.

Parameters

string $name The key name.:

File

vendor/lockr/lockr-client/src/KeyClient.php, line 109

Class

KeyClient

Namespace

Lockr

Code

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