You are here

public function AmazonS3StreamWrapper::dir_closedir in AmazonS3 7

Support for closedir().

Return value

bool TRUE on success.

Overrides StreamWrapperInterface::dir_closedir

See also

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

File

./AmazonS3StreamWrapper.inc, line 1031
Drupal stream wrapper implementation for Amazon S3

Class

AmazonS3StreamWrapper
@file Drupal stream wrapper implementation for Amazon S3

Code

public function dir_closedir() {
  $this->dir = array();
  return TRUE;
}