public function BackendProxy::__construct in FillPDF 8.4
Same name and namespace in other branches
- 5.0.x src/Service/BackendProxy.php \Drupal\fillpdf\Service\BackendProxy::__construct()
Constructs a BackendProxy object.
Parameters
\Drupal\fillpdf\TokenResolverInterface $tokenResolver: The fillpdf.token_resolver service.
\Drupal\fillpdf\Plugin\PdfBackendManager $backendManager: The plugin.manager.fillpdf.pdf_backend service.
\Drupal\Core\Config\ConfigFactoryInterface $configFactory: The configuration factory.
File
- src/
Service/ BackendProxy.php, line 48
Class
- BackendProxy
- BackendProxy service.
Namespace
Drupal\fillpdf\ServiceCode
public function __construct(TokenResolverInterface $tokenResolver, PdfBackendManager $backendManager, ConfigFactoryInterface $configFactory) {
$this->tokenResolver = $tokenResolver;
$this->backendManager = $backendManager;
$this->configFactory = $configFactory;
}