1 | <?php |
||
18 | class FileIteratorReaderArchiver extends AbstractFilesystemArchiver |
||
19 | { |
||
20 | /** |
||
21 | * @param Filesystem $filesystem |
||
22 | */ |
||
23 | public function __construct(Filesystem $filesystem) |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function supports(JobExecution $jobExecution) |
||
35 | |||
36 | /** |
||
37 | * Archive files used by job execution (input / output) |
||
38 | * |
||
39 | * @param JobExecution $jobExecution |
||
40 | */ |
||
41 | public function archive(JobExecution $jobExecution) |
||
60 | |||
61 | /** |
||
62 | * {@inheritdoc} |
||
63 | */ |
||
64 | public function getName() |
||
68 | } |
||
69 |