1 | <?php |
||
10 | class FileDeleter extends FileSelection |
||
11 | { |
||
12 | /** |
||
13 | * Contains the full path of all files that were deleted |
||
14 | * @var array |
||
15 | */ |
||
16 | public $deletedFiles = []; |
||
17 | |||
18 | /** |
||
19 | * Performs the actual deletion of the previous delete selection |
||
20 | * |
||
21 | * @return FileDeleter Returns same object for easy method concatenation |
||
22 | */ |
||
23 | public function perform(): FileActionInterface |
||
40 | } |
||
41 |