_client = $client; $this->_source = $source; $this->_destination = $destination; } /** * @return string */ public function download(int $start, int $end):int { $this->_client->_client('download', $this->_source, $this->_destination, $start, $end); return $end - $start + 1; } }