From 84e2df2fa081bd353a735b84ae747d85a7a1a13e Mon Sep 17 00:00:00 2001 From: Liam Morland <liam@openplus.ca> Date: Wed, 23 Nov 2022 08:22:41 -0500 Subject: [PATCH] Coding standards: Sort 'use' statements --- src/Form/FillPdfSettingsForm.php | 6 +++--- src/Plugin/FillPdfActionPluginManager.php | 2 +- src/Plugin/PdfBackend/PdftkPdfBackend.php | 2 +- src/Plugin/PdfBackendManager.php | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Form/FillPdfSettingsForm.php b/src/Form/FillPdfSettingsForm.php index 1c2bffe..5ee6a12 100644 --- a/src/Form/FillPdfSettingsForm.php +++ b/src/Form/FillPdfSettingsForm.php @@ -7,15 +7,15 @@ use Drupal\Core\Config\ConfigFactoryInterface; use Drupal\Core\File\FileSystemInterface; use Drupal\Core\Form\ConfigFormBase; use Drupal\Core\Form\FormStateInterface; +use Drupal\Core\Link; +use Drupal\Core\Render\RendererInterface; use Drupal\fillpdf\Component\Utility\FillPdf; +use Drupal\fillpdf\Entity\FillPdfForm; use Drupal\fillpdf\Plugin\PdfBackendManager; use Drupal\fillpdf\Service\FillPdfAdminFormHelper; use Drupal\fillpdf\ShellManager; use GuzzleHttp\Client; use Symfony\Component\DependencyInjection\ContainerInterface; -use Drupal\Core\Link; -use Drupal\Core\Render\RendererInterface; -use Drupal\fillpdf\Entity\FillPdfForm; /** * Configure FillPDF settings form. diff --git a/src/Plugin/FillPdfActionPluginManager.php b/src/Plugin/FillPdfActionPluginManager.php index 68d8d0a..c27deee 100644 --- a/src/Plugin/FillPdfActionPluginManager.php +++ b/src/Plugin/FillPdfActionPluginManager.php @@ -2,9 +2,9 @@ namespace Drupal\fillpdf\Plugin; -use Drupal\Core\Plugin\DefaultPluginManager; use Drupal\Core\Cache\CacheBackendInterface; use Drupal\Core\Extension\ModuleHandlerInterface; +use Drupal\Core\Plugin\DefaultPluginManager; /** * Provides the FillPDF action plugin plugin manager. diff --git a/src/Plugin/PdfBackend/PdftkPdfBackend.php b/src/Plugin/PdfBackend/PdftkPdfBackend.php index cae3f0e..a716d33 100644 --- a/src/Plugin/PdfBackend/PdftkPdfBackend.php +++ b/src/Plugin/PdfBackend/PdftkPdfBackend.php @@ -4,6 +4,7 @@ namespace Drupal\fillpdf\Plugin\PdfBackend; use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\File\FileSystem; +use Drupal\Core\File\FileSystemInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\file\FileInterface; use Drupal\fillpdf\Component\Utility\FillPdf; @@ -11,7 +12,6 @@ use Drupal\fillpdf\FieldMapping\TextFieldMapping; use Drupal\fillpdf\Plugin\PdfBackendBase; use Drupal\fillpdf\ShellManager; use Symfony\Component\DependencyInjection\ContainerInterface; -use Drupal\Core\File\FileSystemInterface; /** * Pdftk PdfBackend plugin. diff --git a/src/Plugin/PdfBackendManager.php b/src/Plugin/PdfBackendManager.php index 73e577d..ac369d0 100644 --- a/src/Plugin/PdfBackendManager.php +++ b/src/Plugin/PdfBackendManager.php @@ -3,9 +3,9 @@ namespace Drupal\fillpdf\Plugin; use Drupal\Component\Plugin\FallbackPluginManagerInterface; -use Drupal\Core\Plugin\DefaultPluginManager; use Drupal\Core\Cache\CacheBackendInterface; use Drupal\Core\Extension\ModuleHandlerInterface; +use Drupal\Core\Plugin\DefaultPluginManager; /** * Provides the FillPDF PdfBackend plugin manager. -- GitLab