1
0
Fork 0

InstallerInterface: describe `getInstallPath()` to return a absolute path (#10524)

pull/10525/head
Markus Staab 2022-02-08 14:24:59 +01:00 committed by GitHub
parent 00bac7470e
commit eefb4644b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -111,10 +111,10 @@ interface InstallerInterface
public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null); public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null);
/** /**
* Returns the installation path of a package * Returns the absolute installation path of a package.
* *
* @param PackageInterface $package * @param PackageInterface $package
* @return string path to install to, which MUST not end with a slash * @return string absolute path to install to, which MUST not end with a slash
*/ */
public function getInstallPath(PackageInterface $package); public function getInstallPath(PackageInterface $package);
} }