function SessionStreamWrapper::stream_set_option

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

Overrides PhpStreamWrapperInterface::stream_set_option

File

modules/stream_wrapper_example/src/StreamWrapper/SessionStreamWrapper.php, line 388

Class

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

Namespace

Drupal\stream_wrapper_example\StreamWrapper

Code

public function stream_set_option($option, $arg1, $arg2) {
    // @codingStandardsIgnoreEnd
    return FALSE;
}