Esempio n. 1
0
 /**
  * Keep the server busy.
  *
  * @return null
  * @throws Zend_Mail_Storage_Exception
  */
 public function noop()
 {
     if (!$this->_protocol->noop()) {
         /**
          * @see Zend_Mail_Storage_Exception
          */
         throw new Zend_Mail_Storage_Exception('could not do nothing');
     }
 }
Esempio n. 2
0
 /**
  * Keep the server busy.
  *
  * @return null
  * @throws Zend_Mail_Storage_Exception
  */
 public function noop()
 {
     if (!$this->_protocol->noop()) {
         /**
          * @see Zend_Mail_Storage_Exception
          */
         require_once 'Zend/Mail/Storage/Exception.php';
         throw new Zend_Mail_Storage_Exception('could not do nothing');
     }
 }