Add missing @return to Requirement

even with type hint there should be the full phpdoc to be consistent

Change-Id: I74f2fec23d655deee5704b0ab432cba5c7921ab6
This commit is contained in:
Umherirrender 2020-12-18 22:55:08 +01:00
parent 209c245717
commit c643250755
1 changed files with 2 additions and 0 deletions

View File

@ -35,11 +35,13 @@ interface Requirement {
/**
* Gets the name of the requirement.
* @return string
*/
public function getName() : string;
/**
* Gets whether the requirement is met.
* @return bool
*/
public function isMet() : bool;
}