From 9ff29df16a098b9e9f290b852fc443a66dabd140 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sat, 16 Aug 2014 13:19:26 -0700 Subject: [PATCH] Make it obvious the config object belongs to the Vector skin Change-Id: Id4504565feedaa31e170ea21782fed8043511b31 --- SkinVector.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SkinVector.php b/SkinVector.php index 6ad919d..8f7056d 100644 --- a/SkinVector.php +++ b/SkinVector.php @@ -33,10 +33,10 @@ class SkinVector extends SkinTemplate { /** * @var Config */ - private $config; + private $vectorConfig; public function __construct( Config $config ) { - $this->config = $config; + $this->vectorConfig = $config; } protected static $bodyClasses = array( 'vector-animateLayout' ); @@ -77,7 +77,7 @@ class SkinVector extends SkinTemplate { * Override to pass our Config instance to it */ public function setupTemplate( $classname, $repository = false, $cache_dir = false ) { - return new $classname( $this->config ); + return new $classname( $this->vectorConfig ); } /**