add PHPDoc for setMimetype()

This commit is contained in:
Bjoern Schiessle 2013-11-28 19:05:43 +01:00
parent bef5108218
commit bdfef554c4
1 changed files with 4 additions and 0 deletions

View File

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