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

View file

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