Current path: home/webdevt/www/wdp/wp-content/plugins/duplicator/src/Libs/DupArchive/Info/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/duplicator/src/Libs/DupArchive
<?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();
}
}