entityTypeManager = $entityTypeManager; return $this; } /** * Set config system file. * * @param \Drupal\Core\Config\ImmutableConfig $configSystemFile * The config system file. */ protected function setConfigSystemFile(ImmutableConfig $configSystemFile) { $this->configSystemFile = $configSystemFile; return $this; } /** * Set the stream wrapper manager. * * @param \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface $streamWrapperManager * The stream wrapper manager. */ protected function setStreamWrapperManager(StreamWrapperManagerInterface $streamWrapperManager) { $this->streamWrapperManager = $streamWrapperManager; return $this; } }