function SessionStreamWrapper::stream_stat

Same name in other branches
  1. 3.x modules/stream_wrapper_example/src/StreamWrapper/SessionStreamWrapper.php \Drupal\stream_wrapper_example\StreamWrapper\SessionStreamWrapper::stream_stat()
  2. 4.0.x modules/stream_wrapper_example/src/StreamWrapper/SessionStreamWrapper.php \Drupal\stream_wrapper_example\StreamWrapper\SessionStreamWrapper::stream_stat()

File

stream_wrapper_example/src/StreamWrapper/SessionStreamWrapper.php, line 573

Class

SessionStreamWrapper
Example stream wrapper class to handle session:// streams.

Namespace

Drupal\stream_wrapper_example\StreamWrapper

Code

public function stream_stat() {
    // @codingStandardsIgnoreEnd
    return [
        'size' => strlen($this->sessionContent),
    ];
}