Merge "Add missing @return to Requirement"

This commit is contained in:
jenkins-bot 2020-12-18 23:01:33 +00:00 committed by Gerrit Code Review
commit a0dd9de829
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;
}