You are here

public function MimeStreamWrapper::read in UIkit Components 8.3

Parameters

int $count:

Return value

string

File

src/MimeStreamWrapper.php, line 97

Class

MimeStreamWrapper
Provides a stream wrapper to retrieve mime type information from any source.

Namespace

Drupal\uikit_components

Code

public function read($count) {
  return fread($this->fp, $count);
}