From: Siebrand Mazeland Date: Mon, 18 Nov 2013 04:14:24 +0000 (+0100) Subject: Set visibility for class properties of DependencyWrapper X-Git-Tag: 1.31.0-rc.0~18057^2~1 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/ajouter.php?a=commitdiff_plain;h=e9c996a1b832da43e3d29e8c6c443a2f014362e3;p=lhc%2Fweb%2Fwiklou.git Set visibility for class properties of DependencyWrapper Set to private. No subclassing and no uses outside of the class in core or extensions. Change-Id: If195d02b8ce853242312de7fb4bc7dc1cbe94365 --- diff --git a/includes/cache/CacheDependency.php b/includes/cache/CacheDependency.php index 32bcdf7f4f..57d9af863f 100644 --- a/includes/cache/CacheDependency.php +++ b/includes/cache/CacheDependency.php @@ -28,8 +28,8 @@ * @ingroup Cache */ class DependencyWrapper { - var $value; - var $deps; + private $value; + private $deps; /** * Create an instance.