summaryrefslogtreecommitdiff
path: root/www/wiki/includes/libs/rdbms/encasing/IBlob.php
blob: b1d7aae43884f7fbcc405fa216306e0ca03a9eda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Wikimedia\Rdbms;

/**
 * Wrapper allowing us to distinguish a blob from a normal string and an array of strings
 * @ingroup Database
 */
interface IBlob {
	/**
	 * @return string
	 */
	public function fetch();
}