You are here

public function FlysystemBridge::chmod in Flysystem 7

File

src/FlysystemBridge.php, line 51
Contains \Drupal\flysystem\FlysystemBridge.

Class

FlysystemBridge
An adapter for Flysystem to \DrupalStreamWrapperInterface.

Namespace

Drupal\flysystem

Code

public function chmod($mode) {
  return $this
    ->stream_metadata($this->uri, STREAM_META_ACCESS, $mode);
}