.htaccess
1 year ago
Destination.php
1 year ago
DestinationChunkedDownload.php
1 year ago
DestinationChunkedUpload.php
1 year ago
DestinationDirIterator.php
1 year ago
DestinationDiskUsage.php
1 year ago
DestinationFile.php
1 year ago
index.html
1 year ago
web.config
1 year ago
DestinationChunkedDownload.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JetBackup\Destination\Integration; |
| 4 | |
| 5 | if (!defined( '__JETBACKUP__')) die('Direct access is not allowed'); |
| 6 | |
| 7 | interface DestinationChunkedDownload { |
| 8 | |
| 9 | /** |
| 10 | * @param int $start |
| 11 | * @param int $end |
| 12 | * |
| 13 | * @return int |
| 14 | */ |
| 15 | public function download(int $start, int $end):int; |
| 16 | } |