From: Kunal Mehta Date: Tue, 27 May 2014 02:36:59 +0000 (-0700) Subject: DerivativeContext::setConfig should take a Config object X-Git-Tag: 1.31.0-rc.0~15582^2 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=07c748343cfe389b3c1a74b7aaa9bc222d588c94;p=lhc%2Fweb%2Fwiklou.git DerivativeContext::setConfig should take a Config object Change-Id: Icc16a9c206c57fac2d26547cb874e02ef09c0485 Follows-Up: I13baec0b6d4ea7badf20b9c5f9b40846348838e4 --- 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; }