public function LocalStream::dir_closedir in System stream wrapper 8
Support for closedir().
Return value
bool TRUE on success.
Overrides PhpStreamWrapperInterface::dir_closedir
See also
http://php.net/manual/streamwrapper.dir-closedir.php
File
- src/
StreamWrapper/ LocalStream.php, line 483
Class
- LocalStream
- Defines a Drupal stream wrapper base class for local files.
Namespace
Drupal\system_stream_wrapper\StreamWrapperCode
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;
}