From b5a016b67f252d6127d178b60edecea99c1f331f Mon Sep 17 00:00:00 2001
From: pancho <pancho@15425.no-reply.drupal.org>
Date: Sun, 16 Feb 2020 13:39:56 +0100
Subject: [PATCH] Issue #3060086 by Pancho, wizonesolutions: Introduce new
 PdfBackend plugins to replace legacy FillPdfBackend and BackendService
 plugins

---
 .../src/Plugin/FillPdfBackend/JavaBridgeFillPdfBackend.php     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/fillpdf_legacy/src/Plugin/FillPdfBackend/JavaBridgeFillPdfBackend.php b/modules/fillpdf_legacy/src/Plugin/FillPdfBackend/JavaBridgeFillPdfBackend.php
index 5474b87..e527786 100644
--- a/modules/fillpdf_legacy/src/Plugin/FillPdfBackend/JavaBridgeFillPdfBackend.php
+++ b/modules/fillpdf_legacy/src/Plugin/FillPdfBackend/JavaBridgeFillPdfBackend.php
@@ -4,6 +4,7 @@ namespace Drupal\fillpdf_legacy\Plugin\FillPdfBackend;
 
 use Drupal\Core\File\FileSystem;
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
+use Drupal\Core\Plugin\PluginBase;
 use Drupal\file\Entity\File;
 use Drupal\fillpdf\FillPdfBackendPluginInterface;
 use Drupal\fillpdf\FillPdfFormInterface;
@@ -21,7 +22,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
  * @see https://www.drupal.org/node/3059476
  * @see \Drupal\fillpdf\Plugin\PdfBackend\LocalServerPdfBackend
  */
-class JavaBridgeFillPdfBackend implements FillPdfBackendPluginInterface, ContainerFactoryPluginInterface {
+class JavaBridgeFillPdfBackend extends PluginBase implements FillPdfBackendPluginInterface, ContainerFactoryPluginInterface {
 
   /**
    * The file system.
-- 
GitLab