Sonata\Exporter\Writer\WriterInterface::close PHP Method

close() public method

public close ( )
    public function close();

Usage Example

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