add PHPDoc for setMimetype()

This commit is contained in:
Bjoern Schiessle 2013-11-28 19:05:43 +01:00
parent bef5108218
commit bdfef554c4

View file

@ -173,6 +173,10 @@ class Preview {
return $this;
}
/**
* @brief set mimetype explicitely
* @param string $mimetype
*/
public function setMimetype($mimetype) {
$this->mimetype = $mimetype;
}