• File: DupArchiveInfo.php
  • Full Path: /home/atelipy/www/wpmain/wp-content/plugins/duplicator/src/Libs/DupArchive/Info/DupArchiveInfo.php
  • File size: 407 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

/**
 *
 * @package   Duplicator
 * @copyright (c) 2021, Snapcreek LLC
 */

namespace Duplicator\Libs\DupArchive\Info;

class DupArchiveInfo
{
    public $archiveHeader;
    public $fileHeaders;
    public $directoryHeaders;

    /**
     * Class constructor
     */
    public function __construct()
    {
        $this->fileHeaders      = array();
        $this->directoryHeaders = array();
    }
}