Box\Spout\Writer\AbstractWriter::close PHP Метод

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

Closes the writer. This will close the streamer as well, preventing new data to be written to the file.
public close ( ) : void
Результат void
    public function close()
    {
        $this->closeWriter();
        if (is_resource($this->filePointer)) {
            $this->globalFunctionsHelper->fclose($this->filePointer);
        }
        $this->isWriterOpened = false;
    }