diff options
Diffstat (limited to 'includes/db/DatabaseUtility.php')
-rw-r--r-- | includes/db/DatabaseUtility.php | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/includes/db/DatabaseUtility.php b/includes/db/DatabaseUtility.php index c1e80d33..9a520ff9 100644 --- a/includes/db/DatabaseUtility.php +++ b/includes/db/DatabaseUtility.php @@ -22,29 +22,6 @@ */ /** - * Utility class. - * @ingroup Database - */ -class DBObject { - public $mData; - - function __construct( $data ) { - $this->mData = $data; - } - - /** - * @return bool - */ - function isLOB() { - return false; - } - - function data() { - return $this->mData; - } -} - -/** * Utility class * @ingroup Database * @@ -339,4 +316,8 @@ class LikeMatch { * The implementation details of this opaque type are up to the database subclass. */ interface DBMasterPos { + /** + * @return float UNIX timestamp + */ + public function asOfTime(); } |