Add missing docblock
parent
808a2c9448
commit
28369ea623
|
@ -55,5 +55,11 @@ interface InstallerInterface
|
||||||
*/
|
*/
|
||||||
function uninstall(PackageInterface $package);
|
function uninstall(PackageInterface $package);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the installation path of a package
|
||||||
|
*
|
||||||
|
* @param PackageInterface $package
|
||||||
|
* @return string path
|
||||||
|
*/
|
||||||
function getInstallPath(PackageInterface $package);
|
function getInstallPath(PackageInterface $package);
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,11 +58,7 @@ class LibraryInstaller implements InstallerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks that specific package is installed.
|
* {@inheritDoc}
|
||||||
*
|
|
||||||
* @param PackageInterface $package package instance
|
|
||||||
*
|
|
||||||
* @return Boolean
|
|
||||||
*/
|
*/
|
||||||
public function isInstalled(PackageInterface $package)
|
public function isInstalled(PackageInterface $package)
|
||||||
{
|
{
|
||||||
|
@ -70,11 +66,7 @@ class LibraryInstaller implements InstallerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Installs specific package.
|
* {@inheritDoc}
|
||||||
*
|
|
||||||
* @param PackageInterface $package package instance
|
|
||||||
*
|
|
||||||
* @throws InvalidArgumentException if provided package have no urls to download from
|
|
||||||
*/
|
*/
|
||||||
public function install(PackageInterface $package)
|
public function install(PackageInterface $package)
|
||||||
{
|
{
|
||||||
|
@ -85,12 +77,7 @@ class LibraryInstaller implements InstallerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates specific package.
|
* {@inheritDoc}
|
||||||
*
|
|
||||||
* @param PackageInterface $initial already installed package version
|
|
||||||
* @param PackageInterface $target updated version
|
|
||||||
*
|
|
||||||
* @throws InvalidArgumentException if $from package is not installed
|
|
||||||
*/
|
*/
|
||||||
public function update(PackageInterface $initial, PackageInterface $target)
|
public function update(PackageInterface $initial, PackageInterface $target)
|
||||||
{
|
{
|
||||||
|
@ -106,11 +93,7 @@ class LibraryInstaller implements InstallerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Uninstalls specific package.
|
* {@inheritDoc}
|
||||||
*
|
|
||||||
* @param PackageInterface $package package instance
|
|
||||||
*
|
|
||||||
* @throws InvalidArgumentException if package is not installed
|
|
||||||
*/
|
*/
|
||||||
public function uninstall(PackageInterface $package)
|
public function uninstall(PackageInterface $package)
|
||||||
{
|
{
|
||||||
|
@ -124,6 +107,9 @@ class LibraryInstaller implements InstallerInterface
|
||||||
$this->repository->removePackage($package);
|
$this->repository->removePackage($package);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
public function getInstallPath(PackageInterface $package)
|
public function getInstallPath(PackageInterface $package)
|
||||||
{
|
{
|
||||||
if (null === $package->getTargetDir()) {
|
if (null === $package->getTargetDir()) {
|
||||||
|
|
Loading…
Reference in New Issue