From b52ec2897704a772afae7288215f7c3bedee56bd Mon Sep 17 00:00:00 2001 From: Liam Morland <lkmorlan@uwaterloo.ca> Date: Wed, 30 Mar 2022 11:35:26 -0400 Subject: [PATCH] Issue #3272489: Remove deprecated abstract class FillPdfAdminFormBase --- src/Form/FillPdfAdminFormBase.php | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/Form/FillPdfAdminFormBase.php diff --git a/src/Form/FillPdfAdminFormBase.php b/src/Form/FillPdfAdminFormBase.php deleted file mode 100644 index 59d59ca..0000000 --- a/src/Form/FillPdfAdminFormBase.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Drupal\fillpdf\Form; - -use Drupal\Core\Form\FormBase; - -@trigger_error('FillPdfAdminFormBase is deprecated in fillpdf:8.x-4.7 and is removed from fillpdf:8.x-5.0. Use \Drupal\Core\Form\FormBase instead. See https://www.drupal.org/project/fillpdf/issues/3044743', E_USER_DEPRECATED); - -/** - * Base class for administrative forms. - * - * @package Drupal\fillpdf\Form - * - * @deprecated in fillpdf:8.x-4.7 and is removed from fillpdf:8.x-5.0. Use - * FormBase instead. - * @see https://www.drupal.org/project/fillpdf/issues/3044743 - * @see \Drupal\Core\Form\FormBase - */ -abstract class FillPdfAdminFormBase extends FormBase { - - /** - * FillPdfAdminFormBase constructor. - */ - public function __construct() { - - } - -} -- GitLab