getEol() public method

Get EOL
public getEol ( ) : string
return string
Beispiel #1
0
 public function testSetAndGetEol()
 {
     $m = new Mail();
     $m->setEol(Mail::LF);
     $this->assertEquals("\n", $m->getEol());
 }