You are here

public function SmartImporterFileUploadController::__construct in Commerce Smart Importer 8

SmartImporterFileUploadController constructor.

File

src/Controller/SmartImporterFileUploadController.php, line 43

Class

SmartImporterFileUploadController
File upload handler.

Namespace

Drupal\commerce_smart_importer\Controller

Code

public function __construct(AccountProxy $user, CommerceSmartImporerService $service, FileSystem $fileSystem) {
  $this->currentUser = $user;
  $this->importerService = $service;
  $this->fileSystem = $fileSystem;
}