public function OEmbedStreamWrapper::stream_close in oEmbed 7
Same name and namespace in other branches
- 7.0 OEmbedStreamWrapper.inc \OEmbedStreamWrapper::stream_close()
Support for fclose().
@todo document why this returns TRUE.
Return value
bool TRUE if stream was successfully closed.
Overrides StreamWrapperInterface::stream_close
File
- ./
OEmbedStreamWrapper.inc, line 292 - Create a oEmbed Stream Wrapper class.
Class
- OEmbedStreamWrapper
- @file Create a oEmbed Stream Wrapper class.
Code
public function stream_close() {
return TRUE;
}