1
0
Fork 0

Fix PackageInterface parameter comments (#11777)

pull/11785/head
Quynh Anh 2024-01-04 14:49:27 +01:00 committed by GitHub
parent efe6e44883
commit 8246892d48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ interface DvcsDownloaderInterface
/**
* Checks for unpushed changes to a current branch
*
* @param PackageInterface $package package directory
* @param PackageInterface $package package instance
* @param string $path package directory
* @return string|null changes or null
*/

View File

@ -458,7 +458,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
/**
* Process the download url
*
* @param PackageInterface $package package the url is coming from
* @param PackageInterface $package package instance
* @param non-empty-string $url download url
* @throws \RuntimeException If any problem with the url
* @return non-empty-string url

View File

@ -24,7 +24,7 @@ interface VcsCapableDownloaderInterface
/**
* Gets the VCS Reference for the package at path
*
* @param PackageInterface $package package directory
* @param PackageInterface $package package instance
* @param string $path package directory
* @return string|null reference or null
*/