Composer\CustomDirectoryInstaller\LibraryInstaller::getInstallPath PHP Метод

getInstallPath() публичный Метод

public getInstallPath ( Composer\Package\PackageInterface $package )
$package Composer\Package\PackageInterface
    public function getInstallPath(PackageInterface $package)
    {
        $path = PackageUtils::getPackageInstallPath($package, $this->composer);
        if (!empty($path)) {
            return $path;
        }
        /*
         * In case, the user didn't provide a custom path
         * use the default one, by calling the parent::getInstallPath function
         */
        return parent::getInstallPath($package);
    }
LibraryInstaller