close() public method

public close ( )
Exemplo n.º 1
0
 public function export()
 {
     $this->writer->open();
     foreach ($this->source as $data) {
         $this->writer->write($data);
     }
     $this->writer->close();
 }