From 07c748343cfe389b3c1a74b7aaa9bc222d588c94 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Mon, 26 May 2014 19:36:59 -0700 Subject: [PATCH] DerivativeContext::setConfig should take a Config object Change-Id: Icc16a9c206c57fac2d26547cb874e02ef09c0485 Follows-Up: I13baec0b6d4ea7badf20b9c5f9b40846348838e4 --- includes/context/DerivativeContext.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/context/DerivativeContext.php b/includes/context/DerivativeContext.php index 32a650ff15..4a7b46693c 100644 --- a/includes/context/DerivativeContext.php +++ b/includes/context/DerivativeContext.php @@ -66,7 +66,7 @@ class DerivativeContext extends ContextSource { private $skin; /** - * @var SiteConfiguration + * @var Config */ private $config; @@ -81,9 +81,9 @@ class DerivativeContext extends ContextSource { /** * Set the SiteConfiguration object * - * @param SiteConfiguration $s + * @param Config $s */ - public function setConfig( SiteConfiguration $s ) { + public function setConfig( Config $s ) { $this->config = $s; } -- 2.20.1