From c6432507553a79cdd4a6aee15ceda04bbf07069a Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Fri, 18 Dec 2020 22:55:08 +0100 Subject: [PATCH] Add missing @return to Requirement even with type hint there should be the full phpdoc to be consistent Change-Id: I74f2fec23d655deee5704b0ab432cba5c7921ab6 --- includes/FeatureManagement/Requirement.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/FeatureManagement/Requirement.php b/includes/FeatureManagement/Requirement.php index d3169b1..8ac78b3 100644 --- a/includes/FeatureManagement/Requirement.php +++ b/includes/FeatureManagement/Requirement.php @@ -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; }