ZipStream\ZipStream::addCdr PHP Method

addCdr() protected method

Add CDR (Central Directory Record) footer.
protected addCdr ( array $opt = null ) : void
$opt array
return void
    protected function addCdr($opt = null)
    {
        foreach ($this->files as $file) {
            $this->addCdrFile($file);
        }
        $this->addCdrEof($opt);
    }