IBlob.php 229 B

123456789101112131415
  1. <?php
  2. namespace Wikimedia\Rdbms;
  3. /**
  4. * Wrapper allowing us to distinguish a blob from a normal string and an array of strings
  5. * @ingroup Database
  6. */
  7. interface IBlob {
  8. /**
  9. * @return string
  10. */
  11. public function fetch();
  12. }