diff --git a/src/Service/UWServiceInterface.php b/src/Service/UWServiceInterface.php
index 8ef04ad1b22806dedc328e15f052a248ddd89f4f..ec3a1b6cb0268883a967dd864de056468fc3303b 100644
--- a/src/Service/UWServiceInterface.php
+++ b/src/Service/UWServiceInterface.php
@@ -171,7 +171,7 @@ interface UWServiceInterface {
   /**
    * A function to get the header data for a node/content type.
    *
-   * @param Node $node
+   * @param \Drupal\node\Entity\Node $node
    *   The node object.
    *
    * @return array
@@ -182,7 +182,7 @@ interface UWServiceInterface {
   /**
    * A function to get the footer data for a node/content type.
    *
-   * @param Node $node
+   * @param \Drupal\node\Entity\Node $node
    *   The node object.
    *
    * @return array
@@ -202,4 +202,5 @@ interface UWServiceInterface {
    *   An array of terms with name and link.
    */
   public function uwGetTerms(array $tids, string $type = NULL): array;
+
 }