diff --git a/module/VuFind/src/VuFind/Service/Factory.php b/module/VuFind/src/VuFind/Service/Factory.php
index 327080632a6a6f4a3c271924bebc817e468e6163..20c895770876523c9d7996233a21b47505d0ec9f 100644
--- a/module/VuFind/src/VuFind/Service/Factory.php
+++ b/module/VuFind/src/VuFind/Service/Factory.php
@@ -101,6 +101,8 @@ class Factory
     /**
      * Construct the config manager.
      *
+     * @param ServiceManager $sm Service manager.
+     *
      * @return \VuFind\Config\PluginManager
      */
     public static function getConfig(ServiceManager $sm)
@@ -277,8 +279,9 @@ class Factory
      *
      * @return \VuFind\Hierarchy\TreeDataSource\PluginManager
      */
-    public static function getHierarchyTreeDataSourcePluginManager(ServiceManager $sm)
-    {
+    public static function getHierarchyTreeDataSourcePluginManager(
+        ServiceManager $sm
+    ) {
         return static::getGenericPluginManager($sm, 'Hierarchy\TreeDataSource');
     }