diff --git a/src/Controller/HandlePdfController.php b/src/Controller/HandlePdfController.php
index 048e0046eefbd5d295884747798020accb5d53c7..efe6ed3f09a842358b99c171bc4ec65fc0bd5f21 100644
--- a/src/Controller/HandlePdfController.php
+++ b/src/Controller/HandlePdfController.php
@@ -162,6 +162,18 @@ class HandlePdfController extends ControllerBase {
     );
   }
 
+  /**
+   * Trigger hook that allows modules to alter $context().
+   *
+   * Creates hook_fillpdf_populate_pdf_context_alter().
+   *
+   * @param array $context
+   *   The FillPDF context to alter.
+   */
+  public function alterContext(array &$context): void {
+    $this->moduleHandler()->alter('fillpdf_populate_pdf_context', $context);
+  }
+
   /**
    * Populates PDF template from context.
    *
@@ -177,9 +189,8 @@ class HandlePdfController extends ControllerBase {
   public function populatePdf() {
     $context = $this->linkManipulator->parseRequest($this->requestStack->getCurrentRequest());
 
-    // Create hook_fillpdf_populate_pdf_context_alter().
-    // Allow modules to alter $context.
-    $this->moduleHandler()->alter('fillpdf_populate_pdf_context', $context);
+    // Trigger hook_fillpdf_populate_pdf_context_alter().
+    $this->alterContext($context);
 
     $fillpdf_form = FillPdfForm::load($context['fid']);
     $entities = $this->contextManager->loadEntities($context);