diff --git a/src/Component/Helper/FillPdfMappingHelper.php b/src/Component/Helper/FillPdfMappingHelper.php
index 776716718adcc15e32770e1d4f5ec94107da3044..bbc88c39fa1cbe2575a3809065dc4e0ad6bfb5b7 100644
--- a/src/Component/Helper/FillPdfMappingHelper.php
+++ b/src/Component/Helper/FillPdfMappingHelper.php
@@ -64,7 +64,7 @@ class FillPdfMappingHelper {
     @trigger_error('transformString is deprecated in fillpdf:8.x-4.7 and is removed from fillpdf:8.x-5.0. Deprecated in core. See https://www.drupal.org/project/fillpdf/issues/3044743', E_USER_DEPRECATED);
     // Merge both with field-level replacements taking precedence.
     $replacements = array_merge($form_replacements, $field_replacements);
-    return isset($replacements[$value]) ? $replacements[$value] : $value;
+    return $replacements[$value] ?? $value;
   }
 
 }
diff --git a/src/Component/Utility/FillPdf.php b/src/Component/Utility/FillPdf.php
index 197cded3aa7cf8b9222867a44aa8a575ef505ae4..d0e4e21b652ad7e78a7527496f37f6edec60c051 100644
--- a/src/Component/Utility/FillPdf.php
+++ b/src/Component/Utility/FillPdf.php
@@ -4,10 +4,8 @@ namespace Drupal\fillpdf\Component\Utility;
 
 use Drupal\Core\Config\Config;
 use Drupal\views\Views;
-use Exception;
 use GuzzleHttp\Client;
 use Symfony\Component\Process\Process;
-use Drupal\Core\StreamWrapper\StreamWrapperManagerInterface;
 
 /**
  * Class FillPdf.
@@ -101,7 +99,7 @@ class FillPdf {
     try {
       $response = $http_client->get($fillpdf_config->get('local_service_endpoint'));
     }
-    catch (Exception $exception) {
+    catch (\Exception $exception) {
       // If any thing goes wrong, just fail the check.
       return FALSE;
     }
diff --git a/src/Controller/HandlePdfController.php b/src/Controller/HandlePdfController.php
index 44ffc59de82c1bced346aa44a110582fde13ddac..8ec89340e89a912945db5fe38d8634489a0d37ea 100644
--- a/src/Controller/HandlePdfController.php
+++ b/src/Controller/HandlePdfController.php
@@ -151,7 +151,7 @@ class HandlePdfController extends ControllerBase {
     // admin/structure/fillpdf/%fid.
     $filename = $this->buildFilename($fillpdf_form->title->value, $entities);
 
-    // @todo: When Rules integration ported, emit an event or whatever.
+    // @todo When Rules integration ported, emit an event or whatever.
     return $this->handlePopulatedPdf($fillpdf_form, $populated_pdf, $context, $filename, $entities);
   }
 
@@ -198,6 +198,7 @@ class HandlePdfController extends ControllerBase {
    *
    * @throws \Drupal\Component\Plugin\Exception\PluginException
    * @throws \Drupal\Core\Entity\EntityMalformedException
+   *
    * @see \Drupal\fillpdf\FillPdfLinkManipulatorInterface::parseLink()
    */
   protected function handlePopulatedPdf(FillPdfFormInterface $fillpdf_form, $pdf_data, array $context, $filename, array $entities) {
@@ -215,7 +216,7 @@ class HandlePdfController extends ControllerBase {
       $action_plugin_id = 'download';
     }
     elseif (!$is_available || !$is_allowed) {
-      // @todo: We don't need the ID once an admin_title is #required,
+      // @todo We don't need the ID once an admin_title is #required,
       // see https://www.drupal.org/project/fillpdf/issues/3040776.
       $label = $fillpdf_form->label() . " ({$fillpdf_form->id()})";
       $this->getLogger('fillpdf')->critical('Saving a generated PDF file in unavailable storage scheme %scheme failed.', [
@@ -235,11 +236,11 @@ class HandlePdfController extends ControllerBase {
       $action_plugin_id = $redirect ? 'redirect' : 'save';
     }
 
-    // @todo: Remove in FillPDF 5.x. The filename is not part of the context and
+    // @todo Remove in FillPDF 5.x. The filename is not part of the context and
     // is separately available anyway.
     $context['filename'] = $filename;
 
-    // @todo: Rename 'token_objects' to 'entities' in FillPDF 5.x. Webform
+    // @todo Rename 'token_objects' to 'entities' in FillPDF 5.x. Webform
     // submissions are now entities, too.
     $action_configuration = [
       'form' => $fillpdf_form,
diff --git a/src/Entity/FillPdfForm.php b/src/Entity/FillPdfForm.php
index f239a94a2b7cb8eeb4559b8518874b47b227ed59..9351e90047c5431e91a4f7b0dbef8e1e641c30bc 100644
--- a/src/Entity/FillPdfForm.php
+++ b/src/Entity/FillPdfForm.php
@@ -123,7 +123,7 @@ class FillPdfForm extends ContentEntityBase implements FillPdfFormInterface {
         ],
       ]);
 
-    // @todo: add post_save_redirect field for where to send the browser by default after they generate a PDF
+    // @todo add post_save_redirect field for where to send the browser by default after they generate a PDF
     $fields['scheme'] = BaseFieldDefinition::create('list_string')
       ->setLabel('File storage')
       ->setSettings([
diff --git a/src/FillPdfLinkManipulatorInterface.php b/src/FillPdfLinkManipulatorInterface.php
index 991ec116fb953a3755e3569c2b20f1cf04300a54..3f76139211ee65eed614737eee135a6355e97e28 100644
--- a/src/FillPdfLinkManipulatorInterface.php
+++ b/src/FillPdfLinkManipulatorInterface.php
@@ -25,7 +25,7 @@ interface FillPdfLinkManipulatorInterface {
    *
    * @see \Drupal\fillpdf\FillPdfLinkManipulatorInterface::parseLink()
    *
-   * @todo: Move this elsewhere, maybe to that current_fillpdf_link service I was thinking of or whatever it was.
+   * @todo Move this elsewhere, maybe to that current_fillpdf_link service I was thinking of or whatever it was.
    */
   public function parseRequest(Request $request);
 
diff --git a/src/Form/FillPdfFormConfirmFormBase.php b/src/Form/FillPdfFormConfirmFormBase.php
index df7b98f6fdff57181461e7e98fb73bb653146d5e..12e9d238ba507082f4d15a61d1312030e28de6d2 100644
--- a/src/Form/FillPdfFormConfirmFormBase.php
+++ b/src/Form/FillPdfFormConfirmFormBase.php
@@ -16,7 +16,7 @@ abstract class FillPdfFormConfirmFormBase extends ContentEntityConfirmFormBase {
    * {@inheritdoc}
    */
   protected function actions(array $form, FormStateInterface $form_state) {
-    // @todo: This is a workaround by webform for Core issue #2582295
+    // @todo This is a workaround by webform for Core issue #2582295
     // "Confirmation cancel links are incorrect if installed in a subdirectory".
     // Remove after a fix landed there.
     // See: https://www.drupal.org/project/drupal/issues/2582295
diff --git a/src/Form/FillPdfFormForm.php b/src/Form/FillPdfFormForm.php
index 49e0f2ce67d85486116e05efbb8e21e8e67fa69e..e502ab52e232ff4700a3de4270ec10eb96896844 100644
--- a/src/Form/FillPdfFormForm.php
+++ b/src/Form/FillPdfFormForm.php
@@ -130,7 +130,7 @@ class FillPdfFormForm extends ContentEntityForm {
 
     $form['title']['token_tree'] = $this->adminFormHelper->getAdminTokenForm();
 
-    // @todo: Encapsulate this logic into a ::getDefaultEntityType() method on FillPdfForm
+    // @todo Encapsulate this logic into a ::getDefaultEntityType() method on FillPdfForm
     $stored_default_entity_type = $fillpdf_form->get('default_entity_type');
     $default_entity_type = count($stored_default_entity_type) ? $stored_default_entity_type->first()->value : NULL;
 
@@ -317,7 +317,7 @@ class FillPdfFormForm extends ContentEntityForm {
         '#type' => 'container',
       ];
 
-      // @todo: Check for empty value after Core issue is fixed.
+      // @todo Check for empty value after Core issue is fixed.
       // See: https://www.drupal.org/project/drupal/issues/1585930
       $states_no_scheme = [
         ':input[name="scheme"]' => ['value' => '_none'],
@@ -386,7 +386,7 @@ class FillPdfFormForm extends ContentEntityForm {
     $form['owner_password']['#group'] = 'security';
     $form['user_password']['#group'] = 'security';
 
-    // @todo: Add a button to let them attempt re-parsing if it failed.
+    // @todo Add a button to let them attempt re-parsing if it failed.
     $form['fillpdf_fields']['fields'] = FillPdf::embedView('fillpdf_form_fields',
       'block_1',
       $fillpdf_form->id());
diff --git a/src/Form/FillPdfOverviewForm.php b/src/Form/FillPdfOverviewForm.php
index ab3828d2491c5c9bef21ca4654d637b06c5393d1..688ec8a5759dc86345abdd9331dad9620460f2d9 100644
--- a/src/Form/FillPdfOverviewForm.php
+++ b/src/Form/FillPdfOverviewForm.php
@@ -93,7 +93,7 @@ class FillPdfOverviewForm extends FormBase {
    * {@inheritdoc}
    */
   public function buildForm(array $form, FormStateInterface $form_state) {
-    // @todo: convert to OOP
+    // @todo convert to OOP
     $form['existing_forms'] = views_embed_view('fillpdf_forms', 'block_1');
 
     $config = $this->config('fillpdf.settings');
diff --git a/src/Form/FillPdfSettingsForm.php b/src/Form/FillPdfSettingsForm.php
index 5590c8bea948775d83622be51550938911fba8f8..93dbc81b5b81a4437b609b75aa78344d074759a5 100644
--- a/src/Form/FillPdfSettingsForm.php
+++ b/src/Form/FillPdfSettingsForm.php
@@ -163,7 +163,7 @@ class FillPdfSettingsForm extends ConfigFormBase {
         '%system_settings' => Link::createFromRoute($this->t('File system settings'), 'system.file_system_settings')->toString(),
       ]));
 
-      // @todo: It would be helpful if we could use EntityQuery instead, see
+      // @todo It would be helpful if we could use EntityQuery instead, see
       // https://www.drupal.org/project/fillpdf/issues/3043508.
       $map = $this->adminFormHelper->getFormsByTemplateScheme($template_scheme);
       if ($count = count($map)) {
@@ -172,7 +172,7 @@ class FillPdfSettingsForm extends ConfigFormBase {
         foreach ($map as $form_id => $file_uri) {
           $fillpdf_form = $forms[$form_id];
           $admin_title = current($fillpdf_form->get('admin_title')->getValue());
-          // @todo: We can simpify this once an admin_title is #required,
+          // @todo We can simpify this once an admin_title is #required,
           // see https://www.drupal.org/project/fillpdf/issues/3040776.
           $link = Link::fromTextAndUrl($admin_title ?: "FillPDF form {$fillpdf_form->id()}", $fillpdf_form->toUrl());
           $items[$form_id] = new FormattableMarkup("@fillpdf_form: {$file_uri}", ['@fillpdf_form' => $link->toString()]);
@@ -318,7 +318,7 @@ class FillPdfSettingsForm extends ConfigFormBase {
         '#options' => $locales,
         '#default_value' => $config->get('shell_locale') ?: 'en_US.utf8',
       ];
-      // @todo: We're working around Core issue #2190333, resp. #2854166.
+      // @todo We're working around Core issue #2190333, resp. #2854166.
       // Remove once one of these landed. See:
       // https://www.drupal.org/project/drupal/issues/2854166.
       $form['shell_locale']['#process'][] = ['Drupal\Core\Render\Element\Select', 'processGroup'];
@@ -336,7 +336,7 @@ class FillPdfSettingsForm extends ConfigFormBase {
 
     switch ($values['backend']) {
       case 'fillpdf_service':
-        // @todo: Add validation for FillPDF Service.
+        // @todo Add validation for FillPDF Service.
         // See https://www.drupal.org/project/fillpdf/issues/3040899.
         break;
 
diff --git a/src/OutputHandler.php b/src/OutputHandler.php
index f93ac25fedf711cb8981eb2d405b4d03dad9c67e..37de557b8224c71f463c35ba901d56799cd133a1 100644
--- a/src/OutputHandler.php
+++ b/src/OutputHandler.php
@@ -72,7 +72,7 @@ class OutputHandler implements OutputHandlerInterface {
     /** @var \Drupal\fillpdf\Entity\FillPdfForm $fillpdf_form */
     $fillpdf_form = $configuration['form'];
 
-    // @todo: Rename 'token_objects' to 'entities' in FillPDF 5.x. Webform
+    // @todo Rename 'token_objects' to 'entities' in FillPDF 5.x. Webform
     // submissions are now entities, too.
     /** @var \Drupal\Core\Entity\EntityInterface[] $entities */
     $entities = $configuration['token_objects'];
diff --git a/src/OutputHandlerInterface.php b/src/OutputHandlerInterface.php
index 8fb7fce657f75fadc41b0545557f64f57410b3c3..b691b07eb8fb42d5f0379113fa6dc26324d32d43 100644
--- a/src/OutputHandlerInterface.php
+++ b/src/OutputHandlerInterface.php
@@ -33,7 +33,7 @@ interface OutputHandlerInterface {
    * @see \Drupal\fillpdf\FillPdfLinkManipulatorInterface::parseLink()
    * @see \Drupal\fillpdf\Plugin\FillPdfActionPlugin\FillPdfSaveAction::savePdf()
    *
-   * @todo: Rename 'token_objects' to 'entities' in FillPDF 5.x. Webform
+   * @todo Rename 'token_objects' to 'entities' in FillPDF 5.x. Webform
    *   submissions are now entities, too.
    */
   public function savePdfToFile(array $configuration, $destination_path_override = NULL);
diff --git a/src/Plugin/FillPdfActionPlugin/FillPdfSaveAction.php b/src/Plugin/FillPdfActionPlugin/FillPdfSaveAction.php
index 4dc475d22366091a3707b40b80dc7e9dafb6446d..280a0607496de841a3318fd254d8d33838464f70 100644
--- a/src/Plugin/FillPdfActionPlugin/FillPdfSaveAction.php
+++ b/src/Plugin/FillPdfActionPlugin/FillPdfSaveAction.php
@@ -68,7 +68,7 @@ class FillPdfSaveAction extends FillPdfActionPluginBase {
   public function execute() {
     $this->savePdf();
 
-    // @todo: Fix based on value of post_save_redirect, once I add that
+    // @todo Fix based on value of post_save_redirect, once I add that
     $response = new RedirectResponse(Url::fromRoute('<front>')->toString());
     return $response;
   }
@@ -82,7 +82,7 @@ class FillPdfSaveAction extends FillPdfActionPluginBase {
    * @see \Drupal\fillpdf\OutputHandlerInterface::savePdfToFile()
    */
   protected function savePdf() {
-    // @todo: Error handling?
+    // @todo Error handling?
     return $this->outputHandler->savePdfToFile($this->configuration);
   }
 
diff --git a/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php b/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php
index 166757690ca4919583dc1f9ab9dbf25d7df28fdb..402f85ef70094d8df7220512b73ebac952332232 100644
--- a/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php
+++ b/src/Plugin/PdfBackend/FillPdfServicePdfBackend.php
@@ -2,12 +2,9 @@
 
 namespace Drupal\fillpdf\Plugin\PdfBackend;
 
-use Drupal\file\Entity\File;
 use Drupal\file\FileInterface;
 use Drupal\fillpdf\FieldMapping\ImageFieldMapping;
 use Drupal\fillpdf\FieldMapping\TextFieldMapping;
-use Drupal\fillpdf\FillPdfBackendPluginInterface;
-use Drupal\fillpdf\FillPdfFormInterface;
 use Drupal\fillpdf\Plugin\PdfBackendBase;
 
 /**
@@ -43,7 +40,7 @@ class FillPdfServicePdfBackend extends PdfBackendBase {
     $result = $this->xmlRpcRequest('parse_pdf_fields', base64_encode($pdf_content));
 
     if ($result->error == TRUE) {
-      // @todo: Throw an exception, log a message etc.
+      // @todo Throw an exception, log a message etc.
       return [];
     } // after setting error message
 
diff --git a/src/Plugin/PdfBackend/LocalServerPdfBackend.php b/src/Plugin/PdfBackend/LocalServerPdfBackend.php
index 3e5be2e3f4ecdc917ddf846b5ca177bcf3eb69ef..3f6526789c3c4384b255cbbf621d328fd753abc1 100644
--- a/src/Plugin/PdfBackend/LocalServerPdfBackend.php
+++ b/src/Plugin/PdfBackend/LocalServerPdfBackend.php
@@ -6,9 +6,6 @@ use function GuzzleHttp\json_encode;
 use function GuzzleHttp\json_decode;
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
 use Drupal\file\FileInterface;
-use Drupal\file\Entity\File;
-use Drupal\fillpdf\FillPdfBackendPluginInterface;
-use Drupal\fillpdf\FillPdfFormInterface;
 use Drupal\fillpdf\FieldMapping\ImageFieldMapping;
 use Drupal\fillpdf\FieldMapping\TextFieldMapping;
 use Drupal\fillpdf\Plugin\PdfBackendBase;
diff --git a/src/Plugin/PdfBackend/PdftkPdfBackend.php b/src/Plugin/PdfBackend/PdftkPdfBackend.php
index 83f1ee7fad02ade0ea0b486e4849f5a910b48072..ea0b1dfc1e7d4ba34ef19e621c28c1e70a19b8ff 100644
--- a/src/Plugin/PdfBackend/PdftkPdfBackend.php
+++ b/src/Plugin/PdfBackend/PdftkPdfBackend.php
@@ -5,15 +5,11 @@ namespace Drupal\fillpdf\Plugin\PdfBackend;
 use Drupal\Core\Entity\EntityTypeManagerInterface;
 use Drupal\Core\File\FileSystem;
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
-use Drupal\file\Entity\File;
 use Drupal\file\FileInterface;
 use Drupal\fillpdf\Component\Utility\FillPdf;
 use Drupal\fillpdf\FieldMapping\TextFieldMapping;
-use Drupal\fillpdf\FillPdfBackendPluginInterface;
-use Drupal\fillpdf\FillPdfFormInterface;
 use Drupal\fillpdf\Plugin\PdfBackendBase;
 use Drupal\fillpdf\ShellManager;
-use InvalidArgumentException;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 use Drupal\Core\File\FileSystemInterface;
 
@@ -145,7 +141,7 @@ class PdftkPdfBackend extends PdfBackendBase implements ContainerFactoryPluginIn
         continue;
       }
       // Separate the data key from the data value.
-      list($key, $value) = explode(':', $lineitem);
+      [$key, $value] = explode(':', $lineitem);
       if (in_array($key, array_keys($data_fields_map), NULL)) {
         // Trim spaces.
         $fields[$fieldindex][$data_fields_map[$key]] = trim($value);
@@ -164,7 +160,7 @@ class PdftkPdfBackend extends PdfBackendBase implements ContainerFactoryPluginIn
    * @internal
    */
   protected function getPdftkPath() {
-    return isset($this->configuration['pdftk_path']) ? $this->configuration['pdftk_path'] : 'pdftk';
+    return $this->configuration['pdftk_path'] ?? 'pdftk';
   }
 
   /**
@@ -193,9 +189,9 @@ class PdftkPdfBackend extends PdfBackendBase implements ContainerFactoryPluginIn
     // Generate the file.
     $xfdf_file = file_save_data($xfdf, $xfdf_name, FileSystemInterface::EXISTS_RENAME);
 
-    // @todo: Improve this approach when we turn $context into a value object.
+    // @todo Improve this approach when we turn $context into a value object.
     if (!isset($context['fid'])) {
-      throw new InvalidArgumentException("pdftk requires \$context['fid'] to be set to the ID of the FillPDF Form so that it can check if encryption is configured. The merge was aborted because it was not set.");
+      throw new \InvalidArgumentException("pdftk requires \$context['fid'] to be set to the ID of the FillPDF Form so that it can check if encryption is configured. The merge was aborted because it was not set.");
     }
     $fillpdf_form = $this->entityTypeManager->getStorage('fillpdf_form')->load($context['fid']);
 
diff --git a/src/Serializer.php b/src/Serializer.php
index 270c4cb388dff7723871f3956adf0025068c6846..c1c724e78fc0b377045bc114500851d30a261545 100644
--- a/src/Serializer.php
+++ b/src/Serializer.php
@@ -68,7 +68,7 @@ class Serializer implements SerializerInterface {
 
     foreach ($field_json as $normalized_field) {
       $field = $this->serializer->denormalize($normalized_field, 'Drupal\fillpdf\Entity\FillPdfFormField');
-      // @todo: Exported fields are now already keyed by PDF key. For now, we're
+      // @todo Exported fields are now already keyed by PDF key. For now, we're
       // not using the array keys to remain compatible with previous exports,
       // but should do so that at some later point.
       $decoded_fields[$field->pdf_key->value] = $field;
diff --git a/src/Service/BackendProxy.php b/src/Service/BackendProxy.php
index 193f2b8977316dde42898ce68beb5938ff6cd76d..f908267b2109d1d8796d85e837423f4038930f18 100644
--- a/src/Service/BackendProxy.php
+++ b/src/Service/BackendProxy.php
@@ -97,7 +97,7 @@ class BackendProxy implements BackendProxyInterface {
     /** @var \Drupal\fillpdf\FillPdfBackendPluginInterface|\Drupal\fillpdf\Plugin\PdfBackendInterface $backend */
     $backend = $this->backendManager->createInstance($config->get('backend'), $config->get());
 
-    // @todo: Emit event (or call alter hook?) before populating PDF.
+    // @todo Emit event (or call alter hook?) before populating PDF.
     // Rename fillpdf_merge_fields_alter() to fillpdf_populate_fields_alter().
     /** @var \Drupal\file\FileInterface $templateFile */
     $templateFile = File::load($fillPdfForm->file->target_id);
diff --git a/src/Service/FillPdfLinkManipulator.php b/src/Service/FillPdfLinkManipulator.php
index da63f3e85d2b1dd9d61df93b67861182bd0bc674..6bfaeeb24c9f9549bc18cc7794fc57c7855afc0b 100644
--- a/src/Service/FillPdfLinkManipulator.php
+++ b/src/Service/FillPdfLinkManipulator.php
@@ -16,11 +16,11 @@ class FillPdfLinkManipulator implements FillPdfLinkManipulatorInterface {
   /**
    * {@inheritdoc}
    *
-   * @todo: Maybe this should return a FillPdfLinkContext object or something?
+   * @todo Maybe this should return a FillPdfLinkContext object or something?
    *   Guess it depends on how much I end up needing to change it.
    */
   public function parseRequest(Request $request) {
-    // @todo: Use Url::fromRequest when/if it lands in core. See https://www.drupal.org/node/2605530
+    // @todo Use Url::fromRequest when/if it lands in core. See https://www.drupal.org/node/2605530
     $path = $request->getUri();
     $request_url = $this->createUrlFromString($path);
 
@@ -156,7 +156,7 @@ class FillPdfLinkManipulator implements FillPdfLinkManipulatorInterface {
 
     // Re-key entity IDs so they can be loaded easily with loadMultiple().
     foreach ($query['entity_ids'] as $entity_id) {
-      list($entity_type, $entity_id) = array_pad(explode(':', $entity_id), -2, '');
+      [$entity_type, $entity_id] = array_pad(explode(':', $entity_id), -2, '');
       if (empty($entity_type)) {
         $entity_type = !empty($query['entity_type']) ? $query['entity_type'] : 'node';
       }
@@ -201,7 +201,7 @@ class FillPdfLinkManipulator implements FillPdfLinkManipulatorInterface {
    * @internal
    */
   public static function prepareBooleanFlags(array $parameters) {
-    // @todo: Create a value object for FillPdfMergeContext and get the defaults
+    // @todo Create a value object for FillPdfMergeContext and get the defaults
     // here from that.
     $query = [];
 
diff --git a/src/TokenResolver.php b/src/TokenResolver.php
index 88225a298c09280527dea4d21d7ca270d482cfb8..36a977f9dfd045c18819711153386b775d5e4441 100644
--- a/src/TokenResolver.php
+++ b/src/TokenResolver.php
@@ -76,7 +76,7 @@ class TokenResolver implements TokenResolverInterface {
     }
 
     // Content may be marked as either 'text', 'image' or '' (= unknown).
-    // @todo: Revisit when enforcing FillPdfFields to be one or the other.
+    // @todo Revisit when enforcing FillPdfFields to be one or the other.
     // See: https://www.drupal.org/project/fillpdf/issues/3049368
     $maybe_image = ($options['content'] !== 'text');
     $maybe_text = ($options['content'] !== 'image');
@@ -205,7 +205,7 @@ class TokenResolver implements TokenResolverInterface {
     // Loop through the tokens, starting with the last one.
     foreach (array_reverse($tokens) as $token) {
       // Explode token into its field_name and property parts.
-      list($field_name, $property) = array_pad(explode(':', $token), 2, '');
+      [$field_name, $property] = array_pad(explode(':', $token), 2, '');
 
       if (!$entity->hasField($field_name)) {
         continue;
diff --git a/tests/src/Functional/FillPdfFormFormTest.php b/tests/src/Functional/FillPdfFormFormTest.php
index 549d729e102c001e3d9440d1d43b5addc060209c..e33752fa946127e9159a76176facc75e12ea2988 100644
--- a/tests/src/Functional/FillPdfFormFormTest.php
+++ b/tests/src/Functional/FillPdfFormFormTest.php
@@ -48,7 +48,7 @@ class FillPdfFormFormTest extends FillPdfUploadTestBase {
       'user' => [26, $this->adminUser->id(), $this->adminUser->label()],
     ];
 
-    foreach ($testcases as $type => list($count, $id, $label)) {
+    foreach ($testcases as $type => [$count, $id, $label]) {
       // Set a default entity type and check if it's properly saved.
       $this->drupalPostForm(NULL, ['default_entity_type' => $type], self::OP_SAVE);
       $this->assertSession()->pageTextContains("FillPDF Form has been updated.");
diff --git a/tests/src/Functional/FillPdfFormImportFormTest.php b/tests/src/Functional/FillPdfFormImportFormTest.php
index ed7db6902556454976667c827c378583c6195120..83b036e2dbed357478241341fa826c513b279ef4 100644
--- a/tests/src/Functional/FillPdfFormImportFormTest.php
+++ b/tests/src/Functional/FillPdfFormImportFormTest.php
@@ -60,7 +60,7 @@ class FillPdfFormImportFormTest extends BrowserTestBase {
     $form2_id = $this->getLatestFillPdfForm();
 
     // Change some configuration.
-    // @todo: Even without a destination set, we should always return somewhere
+    // @todo Even without a destination set, we should always return somewhere
     // instead of remaining on the duplicate confirm page.
     $edit = [
       'replacements[0][value]' => 'n|No',
diff --git a/tests/src/Functional/FillPdfOverviewFormTest.php b/tests/src/Functional/FillPdfOverviewFormTest.php
index 44107272b05e514d948c3be5f857b182300864bd..5281775425246b73daf016cae4977c22573ea666 100644
--- a/tests/src/Functional/FillPdfOverviewFormTest.php
+++ b/tests/src/Functional/FillPdfOverviewFormTest.php
@@ -72,7 +72,7 @@ class FillPdfOverviewFormTest extends FillPdfUploadTestBase {
   /**
    * Tests an entity reference to a FillPdfForm.
    *
-   * @todo: This doesn't belong here.
+   * @todo This doesn't belong here.
    */
   public function testEntityReference() {
     // Create new FillPdfForm.
diff --git a/tests/src/Functional/FillPdfUploadTestBase.php b/tests/src/Functional/FillPdfUploadTestBase.php
index 793b47dd87fb1b9c7770520626995570d32ba8ea..d31332797142d3593e8db316a4082664712c2b3b 100644
--- a/tests/src/Functional/FillPdfUploadTestBase.php
+++ b/tests/src/Functional/FillPdfUploadTestBase.php
@@ -2,7 +2,6 @@
 
 namespace Drupal\Tests\fillpdf\Functional;
 
-use Drupal;
 use Drupal\file\Entity\File;
 use Drupal\fillpdf\Component\Utility\FillPdf;
 use Drupal\Component\Render\FormattableMarkup;
@@ -111,8 +110,8 @@ abstract class FillPdfUploadTestBase extends FillPdfTestBase {
     /** @var \Drupal\file\FileInterface $new_file */
     $new_file = File::load($this->getLastFileId());
     $new_filename = $new_file->getFilename();
-    if (version_compare(Drupal::VERSION, '8.8.0', '<')) {
-      // @todo: REMOVE when Drupal 8.7.x is no longer supported.
+    if (version_compare(\Drupal::VERSION, '8.8.0', '<')) {
+      // @todo REMOVE when Drupal 8.7.x is no longer supported.
       $this->assertFileExists($new_file);
     }
     else {
@@ -137,8 +136,8 @@ abstract class FillPdfUploadTestBase extends FillPdfTestBase {
         // Now remove the PDF file again. The temporary file should now be
         // removed both from the disk and the database.
         $this->drupalPostForm(NULL, NULL, self::OP_REMOVE);
-        if (version_compare(Drupal::VERSION, '8.8.0', '<')) {
-          // @todo: REMOVE when Drupal 8.7.x is no longer supported.
+        if (version_compare(\Drupal::VERSION, '8.8.0', '<')) {
+          // @todo REMOVE when Drupal 8.7.x is no longer supported.
           $this->assertFileNotExists($new_file);
         }
         else {
@@ -155,7 +154,7 @@ abstract class FillPdfUploadTestBase extends FillPdfTestBase {
         $this->assertSession()->pageTextNotContains('Your previous field mappings have been transferred to the new PDF template you uploaded.');
 
         // There should be four fields in the correct order.
-        // @todo: Add some CSS markup to the view so we can test the order.
+        // @todo Add some CSS markup to the view so we can test the order.
         $this->assertSession()->pageTextContainsOnce('ImageField');
         $this->assertSession()->pageTextContainsOnce('TestButton');
         $this->assertSession()->pageTextContainsOnce('TextField1');
diff --git a/tests/src/Functional/PdfParseTest.php b/tests/src/Functional/PdfParseTest.php
index 58f2d3f06feeac2f94bf2bc52bcb8cea4f6fd785..150ce89c404bc5ad8ea55411321879ab27c043b8 100644
--- a/tests/src/Functional/PdfParseTest.php
+++ b/tests/src/Functional/PdfParseTest.php
@@ -97,7 +97,7 @@ class PdfParseTest extends FillPdfTestBase {
     $this->assertSession()->pageTextNotContains('Merging the FillPDF Form failed');
 
     // Retrieve the last file ID which should be the sample file.
-    // @todo: When using pdftk, the saved xfdf file leads to the file counter
+    // @todo When using pdftk, the saved xfdf file leads to the file counter
     // being increased by two instead of 1. We're therefore only comparing by
     // "greater than".
     $file_id = $this->getLastFileId();
@@ -116,7 +116,7 @@ class PdfParseTest extends FillPdfTestBase {
     // sample functionality does that).
     foreach ($backend->parseFile($file) as $field) {
       if ($field['type'] == 'Text') {
-        $value = isset($field['value']) ? $field['value'] : NULL;
+        $value = $field['value'] ?? NULL;
         static::assertEquals("<{$field['name']}>", $value);
       }
     }
diff --git a/tests/src/Functional/PdfPopulationTest.php b/tests/src/Functional/PdfPopulationTest.php
index 2ad160aa4d13574a2a3e4b586fc396cdb2c8edc8..3a1c1bf7bcd135e3d8379835b5b7f2229d7baf3e 100644
--- a/tests/src/Functional/PdfPopulationTest.php
+++ b/tests/src/Functional/PdfPopulationTest.php
@@ -5,9 +5,6 @@ namespace Drupal\Tests\fillpdf\Functional;
 use Drupal\file\Entity\File;
 use Drupal\fillpdf\Component\Utility\FillPdf;
 use Drupal\fillpdf\Entity\FillPdfForm;
-use Drupal\fillpdf\FieldMapping\ImageFieldMapping;
-use Drupal\fillpdf\FieldMapping\TextFieldMapping;
-use Drupal\fillpdf_test\Plugin\PdfBackend\TestFillPdfBackend;
 use Drupal\fillpdf_test\Plugin\PdfBackend\TestPdfBackend;
 use Drupal\Tests\taxonomy\Traits\TaxonomyTestTrait;
 use Drupal\user\Entity\Role;
diff --git a/tests/src/Functional/PdfWebformPopulationTest.php b/tests/src/Functional/PdfWebformPopulationTest.php
index 580e0ac35f2cef90099c5f5661808d9cd7fde5cd..fc733d2965d1b2ed4a11b84a38b09603417a5efe 100644
--- a/tests/src/Functional/PdfWebformPopulationTest.php
+++ b/tests/src/Functional/PdfWebformPopulationTest.php
@@ -43,7 +43,7 @@ class PdfWebformPopulationTest extends FillPdfTestBase {
    * {@inheritdoc}
    */
   protected function setUp(): void {
-    // @todo: Stop skipping this test when Webform has Drupal 9 support.
+    // @todo Stop skipping this test when Webform has Drupal 9 support.
     if (version_compare(substr(\Drupal::VERSION, 0, 1), 9, '>=')) {
       $this->markTestSkipped('Webform is not yet compatible with Drupal 9, so skipping these tests.');
     }
diff --git a/tests/src/Traits/TestFillPdfTrait.php b/tests/src/Traits/TestFillPdfTrait.php
index 6a65ccedb35669725254a4a2afaa1e80a4292a76..946ec5cfefeb8c9fb6234b6e921b4c4be284fd10 100644
--- a/tests/src/Traits/TestFillPdfTrait.php
+++ b/tests/src/Traits/TestFillPdfTrait.php
@@ -110,7 +110,7 @@ trait TestFillPdfTrait {
     };
 
     $edit = [
-      'files[upload_pdf]' => isset($path) ? $path : NULL,
+      'files[upload_pdf]' => $path ?? NULL,
     ];
     $this->drupalPostForm('admin/structure/fillpdf', $edit, 'Create');
     $this->assertSession()->statusCodeEquals(200);