Declare visibility for class properties in MySQLMasterPos
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 27 Dec 2013 00:38:54 +0000 (01:38 +0100)
committerSiebrand <siebrand@wikimedia.org>
Fri, 27 Dec 2013 09:24:59 +0000 (09:24 +0000)
Change-Id: I020524274261144212901bfc8dfe094f03e4721c

includes/db/DatabaseMysqlBase.php

index 3125325..3ac7442 100644 (file)
@@ -1203,7 +1203,11 @@ class MySQLField implements Field {
 }
 
 class MySQLMasterPos implements DBMasterPos {
-       var $file, $pos;
+       /** @var string */
+       private $file;
+
+       /** @var int */
+       private $pos;
 
        function __construct( $file, $pos ) {
                $this->file = $file;