You are here

public function S3fsStream::dir_closedir in S3 File System 8.2

Support for closedir().

Return value

bool Always returns TRUE.

Overrides PhpStreamWrapperInterface::dir_closedir

See also

http://php.net/manual/en/streamwrapper.dir-closedir.php

File

src/StreamWrapper/S3fsStream.php, line 1096

Class

S3fsStream
Defines a Drupal s3fs (s3fs://) stream wrapper class.

Namespace

Drupal\s3fs\StreamWrapper

Code

public function dir_closedir() {
  $this
    ->_debug("dir_closedir() called.");
  unset($this->dir);
  return TRUE;
}