X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fdb%2FDatabaseUtility.php;h=9a520ff98047958c5b358bab6b266c5ac7df942a;hb=b88b0b284f24c40420cc28e5e43d72fab43b407b;hp=c1e80d3331be7ad5394cacd2cd74bbcc45bf8729;hpb=d78b4eeff8cdf47ba6f5da1257c4a6e9de688316;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/db/DatabaseUtility.php b/includes/db/DatabaseUtility.php index c1e80d3331..9a520ff980 100644 --- a/includes/db/DatabaseUtility.php +++ b/includes/db/DatabaseUtility.php @@ -21,29 +21,6 @@ * @ingroup Database */ -/** - * 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(); }