From 580a0aa537ab2b2ecbd701a7948f35d88dc6907f Mon Sep 17 00:00:00 2001 From: jdlrobson Date: Mon, 3 Aug 2020 17:17:53 -0700 Subject: [PATCH] Document stability of undocumented classes Bug: T248399 Change-Id: I9445d5c0753f7272c3d22d66b8824f8a95b86d41 --- includes/Constants.php | 2 ++ includes/Hooks.php | 2 ++ includes/SkinVector.php | 2 ++ 3 files changed, 6 insertions(+) diff --git a/includes/Constants.php b/includes/Constants.php index 3e22aa6..86ab165 100644 --- a/includes/Constants.php +++ b/includes/Constants.php @@ -6,6 +6,8 @@ use FatalError; /** * A namespace for Vector constants for internal Vector usage only. **Do not rely on this file as an * API as it may change without warning at any time.** + * @package Vector + * @internal */ final class Constants { /** diff --git a/includes/Hooks.php b/includes/Hooks.php index d4b2cad..3aedec2 100644 --- a/includes/Hooks.php +++ b/includes/Hooks.php @@ -17,6 +17,8 @@ use User; * * Hook handler method names should be in the form of: * on() + * @package Vector + * @internal */ class Hooks { /** diff --git a/includes/SkinVector.php b/includes/SkinVector.php index c75af38..6cf60fb 100644 --- a/includes/SkinVector.php +++ b/includes/SkinVector.php @@ -29,6 +29,8 @@ use Vector\Constants; * Skin subclass for Vector * @ingroup Skins * Skins extending SkinVector are not supported + * @package Vector + * @internal */ class SkinVector extends SkinMustache {