clearDate() public method

Clears the formatted date from the message
public clearDate ( ) : Zend_Mail
return Zend_Mail Provides fluent interface
コード例 #1
0
ファイル: MailTest.php プロジェクト: jsnshrmn/Suma
 public function testClearDate()
 {
     $mail = new Zend_Mail();
     $mail->setDate();
     $mail->clearDate();
     $this->assertFalse(isset($mock->headers['Date']));
 }