Liip\RMT\Action\BuildPharPackageAction::getDestination PHP Method

getDestination() protected method

Get the destination directory to build the package into.
protected getDestination ( ) : string
return string The destination
    protected function getDestination()
    {
        $destination = $this->options['destination'];
        if ($this->isRelativePath($destination)) {
            return Context::getParam('project-root') . '/' . $destination;
        }
        return $destination;
    }