From: Siebrand Mazeland Date: Sat, 23 Nov 2013 21:36:54 +0000 (+0100) Subject: Set visibility on class properties of OldLocalFile X-Git-Tag: 1.31.0-rc.0~17900^2 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=90fda1538d13cf3c3db1c9d6a137766ab9f4f0ec;p=lhc%2Fweb%2Fwiklou.git Set visibility on class properties of OldLocalFile Change-Id: Ia3e0c67ce3d2a65da04e83ac54ae4801d6d81596 --- diff --git a/includes/filerepo/file/OldLocalFile.php b/includes/filerepo/file/OldLocalFile.php index 2c545963c3..e1862c7610 100644 --- a/includes/filerepo/file/OldLocalFile.php +++ b/includes/filerepo/file/OldLocalFile.php @@ -27,7 +27,11 @@ * @ingroup FileAbstraction */ class OldLocalFile extends LocalFile { - var $requestedTime, $archive_name; + /** @var string Timestamp */ + protected $requestedTime; + + /** @var string Archive name */ + protected $archive_name; const CACHE_VERSION = 1; const MAX_CACHE_ROWS = 20; @@ -392,5 +396,4 @@ class OldLocalFile extends LocalFile { return true; } - }