You are here

public function FileSystem::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/File/FileSystem.php \Drupal\Core\File\FileSystem::__construct()

Constructs a new FileSystem.

Parameters

\Drupal\Core\StreamWrapper\StreamWrapperManagerInterface $stream_wrapper_manager: The stream wrapper manager.

\Drupal\Core\Site\Settings $settings: The site settings.

\Psr\Log\LoggerInterface $logger: The file logger channel.

File

core/lib/Drupal/Core/File/FileSystem.php, line 66

Class

FileSystem
Provides helpers to operate on files and stream wrappers.

Namespace

Drupal\Core\File

Code

public function __construct(StreamWrapperManagerInterface $stream_wrapper_manager, Settings $settings, LoggerInterface $logger) {
  $this->streamWrapperManager = $stream_wrapper_manager;
  $this->settings = $settings;
  $this->logger = $logger;
}