deleteMailbox() abstract public method

Delete a mailbox from the cache.
abstract public deleteMailbox ( string $mailbox )
$mailbox string The mailbox to delete.
Exemplo n.º 1
0
 /**
  * Delete a mailbox from the cache.
  *
  * @param string $mbox  The mailbox to delete.
  */
 public function deleteMailbox($mbox)
 {
     $mbox = strval($mbox);
     $this->_backend->deleteMailbox($mbox);
     if ($this->_debug) {
         $this->_debug->info(sprintf('CACHE: Deleted mailbox [%s]', $mbox));
     }
 }