Пример #1
0
 /**
  * Returns the mime type of this file
  *
  * @return String
  */
 public function getMimeType()
 {
     if (!isset($this->mime)) {
         $this->mime = $this->file->getMimeType();
     }
     return $this->mime;
 }