ManaPHP\Counter\AdapterInterface::delete PHP Метод

delete() публичный Метод

public delete ( string $type, string $id ) : void
$type string
$id string
Результат void
    public function delete($type, $id);

Usage Example

Пример #1
0
 /**
  * Deletes the key
  *
  * @param string $type
  * @param string $id
  *
  * @return void
  */
 public function delete($type, $id)
 {
     $this->adapter->delete($this->_prefix . $type, $id);
 }