From b213de40ff990a369e49326901cbb1eacc8aee4f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 20 Nov 2013 06:09:49 +0100 Subject: [PATCH] Declare visibility of class property in ContentHandler Make $handlers protected. It's only used in MediaHandler and ContentHandler. Change-Id: I2cfc9273d4cf710fbcf01a8e70a93ae64de73579 --- includes/content/ContentHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/content/ContentHandler.php b/includes/content/ContentHandler.php index d396570303..1abe1fa7e6 100644 --- a/includes/content/ContentHandler.php +++ b/includes/content/ContentHandler.php @@ -278,9 +278,9 @@ abstract class ContentHandler { } /** - * @var Array A Cache of ContentHandler instances by model id + * @var array A Cache of ContentHandler instances by model id */ - static $handlers; + protected static $handlers; /** * Returns the ContentHandler singleton for the given model ID. Use the -- 2.20.1