* @package Mammut\Storage */ class DBBlobStorage extends \Mammut\StrictObject implements iBlobStorage { public function store($blob) { throw new ImplementationException(); } public function append($guid, $blob) { throw new ImplementationException(); } public function replace($guid, $blob) { throw new ImplementationException(); } public function exists($guid) { throw new ImplementationException(); } public function get($guid) { throw new ImplementationException(); } public function getPart($guid, $start, $lenght) { throw new ImplementationException(); } public function size($guid) { throw new ImplementationException(); } public function delete($guid) { throw new ImplementationException(); } public function purge() { throw new ImplementationException(); } }