Beispiel #1
0
 public function export()
 {
     $this->writer->open();
     foreach ($this->source as $data) {
         $this->writer->write($data);
     }
     $this->writer->close();
 }
 public function testDefaultMimeTypeIsString()
 {
     $this->assertInternalType('string', $this->writer->getDefaultMimeType());
 }