Set visibility on class properties of OldLocalFile
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 23 Nov 2013 21:36:54 +0000 (22:36 +0100)
committerSiebrand <siebrand@wikimedia.org>
Sat, 23 Nov 2013 21:39:19 +0000 (21:39 +0000)
Change-Id: Ia3e0c67ce3d2a65da04e83ac54ae4801d6d81596

includes/filerepo/file/OldLocalFile.php

index 2c54596..e1862c7 100644 (file)
  * @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;
        }
-
 }