You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
424 B
24 lines
424 B
<?php
|
|
|
|
/**
|
|
*
|
|
* @package Duplicator
|
|
* @copyright (c) 2021, Snapcreek LLC
|
|
*/
|
|
|
|
namespace Duplicator\Libs\DupArchive\Processors;
|
|
|
|
/**
|
|
*Failure class
|
|
*/
|
|
class DupArchiveProcessingFailure
|
|
{
|
|
const TYPE_UNKNOWN = 0;
|
|
const TYPE_FILE = 1;
|
|
const TYPE_DIRECTORY = 2;
|
|
|
|
public $type = self::TYPE_UNKNOWN;
|
|
public $description = '';
|
|
public $subject = '';
|
|
public $isCritical = false;
|
|
}
|
|
|