Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
duplicator
/
src
/
Libs
/
DupArchive
/
Info
:
DupArchiveInfo.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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(); } }