Skip to content
Snippets Groups Projects
Commit b52ec289 authored by Liam Morland's avatar Liam Morland
Browse files

Issue #3272489: Remove deprecated abstract class FillPdfAdminFormBase

parent 437dc9a4
No related branches found
No related tags found
No related merge requests found
<?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() {
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment