You are here

public function File::getMimeType in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getMimeType()

Returns the MIME type of the file.

Return value

string The MIME type of the file, e.g. image/jpeg or text/xml.

Overrides FileInterface::getMimeType

File

core/modules/file/src/Entity/File.php, line 91

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function getMimeType() {
  return $this
    ->get('filemime')->value;
}