|
1
|
<?php |
|
2
|
|
|
3
|
namespace WPStaging\Backup\Interfaces; |
|
4
|
|
|
5
|
use WPStaging\Backup\Dto\File\ExtractorDto; |
|
6
|
|
|
7
|
/** |
|
8
|
* Interface for tasks that need to persist extractor state during backup restoration
|
|
9
|
*/ |
|
10
|
interface ExtractorTaskInterface |
|
11
|
{ |
|
12
|
public function persistDto(ExtractorDto $dto); |
|
13
|
} |
|
14
|
|