You are here

function hackedProjectWebDevDownloader::get_final_destination in Hacked! 8.2

Returns the final destination of the unpacked project.

Return value

string The unpacked project's path.

Overrides hackedProjectWebDownloader::get_final_destination

File

src/hackedProjectWebDevDownloader.php, line 172

Class

hackedProjectWebDevDownloader
Downloads a development snapshot of a project using Git.

Namespace

Drupal\hacked

Code

function get_final_destination() {

  // Simply return the original destination as Git's cloning already provides
  // an unpacked project.
  return $this
    ->get_destination();
}