From 963efb2602d91165ffb7ee37d5757ced7766fd91 Mon Sep 17 00:00:00 2001 From: Yoshinari Takaoka Date: Sun, 31 Oct 2021 22:58:32 +0900 Subject: [PATCH] Clarify code comment about reference page, because readers does not know where to go in chunked html page. "// See below." is valid only in Single HTML manual. https://www.php.net/manual/en/language.enumerations.methods.php --- language/enumerations.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/language/enumerations.xml b/language/enumerations.xml index 224d15e45c..7eb4e6714e 100644 --- a/language/enumerations.xml +++ b/language/enumerations.xml @@ -395,7 +395,8 @@ final class Suit implements UnitEnum, Colorful public static function cases(): array { - // See below. + // Illegal method, because manually defining a cases() method on an Enum is disallowed. + // See also "Value listing" section. } } ?>