Sonata\Exporter\Writer\WriterInterface::close PHP Метод

close() публичный Метод

public close ( )
    public function close();

Usage Example

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