You are here

public function File::setMimeType in Drupal 9

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

Sets the MIME type of the file.

Parameters

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

Overrides FileInterface::setMimeType

File

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

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function setMimeType($mime) {
  $this
    ->get('filemime')->value = $mime;
}