You are here

public function UploadFetcherForm::__construct in Feeds 8.3

Constructs a DirectoryFetcherForm object.

Parameters

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

\Drupal\Core\File\FileSystemInterface $file_system: The file and stream wrapper helper.

File

src/Feeds/Fetcher/Form/UploadFetcherForm.php, line 41

Class

UploadFetcherForm
The configuration form for the upload fetcher.

Namespace

Drupal\feeds\Feeds\Fetcher\Form

Code

public function __construct(StreamWrapperManagerInterface $stream_wrapper_manager, FileSystemInterface $file_system) {
  $this->streamWrapperManager = $stream_wrapper_manager;
  $this->fileSystem = $file_system;
}