Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
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 | } |