Sonata\Exporter\Writer\WriterInterface::close PHP Méthode

close() public méthode

public close ( )
    public function close();

Usage Example

Exemple #1
0
 public function export()
 {
     $this->writer->open();
     foreach ($this->source as $data) {
         $this->writer->write($data);
     }
     $this->writer->close();
 }
WriterInterface