Move Blob class to Rdbms namespaces
[mediawiki.git] / includes / libs / rdbms / encasing / IBlob.php
blobb1d7aae43884f7fbcc405fa216306e0ca03a9eda
1 <?php
3 namespace Wikimedia\Rdbms;
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
13 public function fetch();