public static function LocalStream::getType in System stream wrapper 8
Returns the type of stream wrapper.
Return value
int
Overrides StreamWrapperInterface::getType
1 method overrides LocalStream::getType()
- ExtensionStreamBase::getType in src/
StreamWrapper/ ExtensionStreamBase.php - Returns the type of stream wrapper.
File
- src/
StreamWrapper/ LocalStream.php, line 25
Class
- LocalStream
- Defines a Drupal stream wrapper base class for local files.
Namespace
Drupal\system_stream_wrapper\StreamWrapperCode
public static function getType() {
return StreamWrapperInterface::NORMAL;
}