You are here

public function OutputHandler::__construct in FillPDF 5.0.x

Same name and namespace in other branches
  1. 8.4 src/OutputHandler.php \Drupal\fillpdf\OutputHandler::__construct()

OutputHandler constructor.

Parameters

\Drupal\fillpdf\TokenResolverInterface $token_resolver: The FillPdf token resolver.

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

\Drupal\fillpdf\FillPdfLinkManipulatorInterface $link_manipulator: The FillPdf link manipulator.

\Drupal\Core\File\FileSystemInterface $file_system: The file system.

File

src/OutputHandler.php, line 61

Class

OutputHandler
Class OutputHandler.

Namespace

Drupal\fillpdf

Code

public function __construct(TokenResolverInterface $token_resolver, LoggerInterface $logger, FillPdfLinkManipulatorInterface $link_manipulator, FileSystemInterface $file_system) {
  $this->tokenResolver = $token_resolver;
  $this->logger = $logger;
  $this->linkManipulator = $link_manipulator;
  $this->fileSystem = $file_system;
}