Merge "Drop index oi_name_archive_name on table oldimage"
[lhc/web/wiklou.git] / includes / libs / rdbms / encasing / IBlob.php
1 <?php
2
3 namespace Wikimedia\Rdbms;
4
5 /**
6 * Wrapper allowing us to distinguish a blob from a normal string and an array of strings
7 * @ingroup Database
8 */
9 interface IBlob {
10 /**
11 * @return string
12 */
13 public function fetch();
14 }