/**
  * @param $ticketId string
  */
 public function deleteTicket($ticketId)
 {
     $scopedTicketId = $this->scopeTicketId($ticketId);
     SimpleSAML_Memcache::delete($scopedTicketId);
 }
 /**
  * Delete a value from the datastore.
  *
  * @param string $type  The datatype.
  * @param string $key  The key.
  */
 public function delete($type, $key)
 {
     assert('is_string($type)');
     assert('is_string($key)');
     SimpleSAML_Memcache::delete('simpleSAMLphp.' . $type . '.' . $key);
 }
 public function removeObject($identity)
 {
     $scopedId = $this->scopeId($identity);
     SimpleSAML_Memcache::delete($scopedId);
 }