protected function PostFile::guessContentType

Determine the Content-Type of the file

1 call to PostFile::guessContentType()
PostFile::__construct in drupal/core/vendor/guzzle/http/Guzzle/Http/Message/PostFile.php

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Message/PostFile.php, line 107

Class

PostFile
POST file upload

Namespace

Guzzle\Http\Message

Code

protected function guessContentType() {
  return Mimetypes::getInstance()
    ->fromFilename($this->filename) ?: 'application/octet-stream';
}