public function Stream::getWrapper

Get the stream wrapper type

Return value

string

Overrides StreamInterface::getWrapper

2 calls to Stream::getWrapper()
EntityBody::getContentType in drupal/core/vendor/guzzle/http/Guzzle/Http/EntityBody.php
Guess the Content-Type or return the default application/octet-stream
Stream::getSize in drupal/core/vendor/guzzle/stream/Guzzle/Stream/Stream.php
Get the size of the stream if able

File

drupal/core/vendor/guzzle/stream/Guzzle/Stream/Stream.php, line 153

Class

Stream
PHP stream implementation

Namespace

Guzzle\Stream

Code

public function getWrapper() {
  return $this->cache[self::WRAPPER_TYPE];
}