1
0
Fork 0

Improve PHPDoc for package links

pull/4647/head
Sullivan SENECHAL 2015-11-27 12:51:04 +01:00
parent bb2e29ba28
commit d9a62ffd50
1 changed files with 5 additions and 5 deletions

View File

@ -220,7 +220,7 @@ interface PackageInterface
* Returns a set of links to packages which need to be installed before * Returns a set of links to packages which need to be installed before
* this package can be installed * this package can be installed
* *
* @return array An array of package links defining required packages * @return Link[] An array of package links defining required packages
*/ */
public function getRequires(); public function getRequires();
@ -228,7 +228,7 @@ interface PackageInterface
* Returns a set of links to packages which must not be installed at the * Returns a set of links to packages which must not be installed at the
* same time as this package * same time as this package
* *
* @return array An array of package links defining conflicting packages * @return Link[] An array of package links defining conflicting packages
*/ */
public function getConflicts(); public function getConflicts();
@ -236,7 +236,7 @@ interface PackageInterface
* Returns a set of links to virtual packages that are provided through * Returns a set of links to virtual packages that are provided through
* this package * this package
* *
* @return array An array of package links defining provided packages * @return Link[] An array of package links defining provided packages
*/ */
public function getProvides(); public function getProvides();
@ -244,7 +244,7 @@ interface PackageInterface
* Returns a set of links to packages which can alternatively be * Returns a set of links to packages which can alternatively be
* satisfied by installing this package * satisfied by installing this package
* *
* @return array An array of package links defining replaced packages * @return Link[] An array of package links defining replaced packages
*/ */
public function getReplaces(); public function getReplaces();
@ -252,7 +252,7 @@ interface PackageInterface
* Returns a set of links to packages which are required to develop * Returns a set of links to packages which are required to develop
* this package. These are installed if in dev mode. * this package. These are installed if in dev mode.
* *
* @return array An array of package links defining packages required for development * @return Link[] An array of package links defining packages required for development
*/ */
public function getDevRequires(); public function getDevRequires();