.htaccess
5 months ago
Destination.php
5 months ago
DestinationChunkedDownload.php
5 months ago
DestinationChunkedUpload.php
5 months ago
DestinationDirIterator.php
5 months ago
DestinationDiskUsage.php
5 months ago
DestinationFile.php
5 months ago
index.html
5 months ago
web.config
5 months 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 | } |