You are here

public function LocalStream::dir_closedir in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::dir_closedir()

Support for closedir().

Return value

bool TRUE on success.

Overrides PhpStreamWrapperInterface::dir_closedir

See also

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

File

core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 568

Class

LocalStream
Defines a Drupal stream wrapper base class for local files.

Namespace

Drupal\Core\StreamWrapper

Code

public function dir_closedir() {
  closedir($this->handle);

  // We do not really have a way to signal a failure as closedir() does not
  // have a return value.
  return TRUE;
}