<?php/** * Utility class * @ingroup Database * * This allows us to distinguish a blob from a normal string and an array of strings */classBlob{/** @var string */protected$mData;function__construct($data){$this->mData=$data;}functionfetch(){return$this->mData;}}