Merge "Add title to list item of language link"
[lhc/web/wiklou.git] / includes / db / DatabaseUtility.php
index 2b4b634..36d218a 100644 (file)
@@ -52,7 +52,7 @@ class DBObject {
  */
 class Blob {
        /** @var string */
-       private $mData;
+       protected $mData;
 
        function __construct( $data ) {
                $this->mData = $data;
@@ -326,12 +326,8 @@ class LikeMatch {
 
 /**
  * An object representing a master or slave position in a replicated setup.
+ *
+ * The implementation details of this opaque type are up to the database subclass.
  */
 interface DBMasterPos {
-       /**
-        * Return the master position.
-        *
-        * @return mixed Master position
-        */
-       public function getMasterPos();
 }