diff --git a/module/VuFind/Module.php b/module/VuFind/Module.php
index 92901f9af4fbd447d01619d902636eee905d8453..78f16baa5c4e4c1cfc04c4f01196b1e503711e06 100644
--- a/module/VuFind/Module.php
+++ b/module/VuFind/Module.php
@@ -75,6 +75,8 @@ class Module
     /**
      * Initialize the module
      *
+     * @param ModuleManager $m Module manager
+     *
      * @return void
      */
     public function init(ModuleManager $m)
@@ -84,6 +86,8 @@ class Module
     /**
      * Bootstrap the module
      *
+     * @param MvcEvent $e Event
+     *
      * @return void
      */
     public function onBootstrap(MvcEvent $e)
diff --git a/module/VuFindConsole/Module.php b/module/VuFindConsole/Module.php
index d700c026f135c70976496764b80e744a1c33d667..29aed5666df3712998cc5c0d475bc47470ff6c2e 100644
--- a/module/VuFindConsole/Module.php
+++ b/module/VuFindConsole/Module.php
@@ -69,6 +69,8 @@ class Module
     /**
      * Initialize the module
      *
+     * @param ModuleManager $m Module manager
+     *
      * @return void
      */
     public function init(ModuleManager $m)
@@ -78,6 +80,8 @@ class Module
     /**
      * Bootstrap the module
      *
+     * @param MvcEvent $e Event
+     *
      * @return void
      */
     public function onBootstrap(MvcEvent $e)
diff --git a/module/VuFindLocalTemplate/Module.php b/module/VuFindLocalTemplate/Module.php
index 896565c56efe170188b183045174d68092d00368..f01c4c7982e7317cb318b5da78fdd94ff47b6fed 100644
--- a/module/VuFindLocalTemplate/Module.php
+++ b/module/VuFindLocalTemplate/Module.php
@@ -69,6 +69,8 @@ class Module
     /**
      * Initialize the module
      *
+     * @param ModuleManager $m Module manager
+     *
      * @return void
      */
     public function init(ModuleManager $m)
@@ -78,6 +80,8 @@ class Module
     /**
      * Bootstrap the module
      *
+     * @param MvcEvent $e Event
+     *
      * @return void
      */
     public function onBootstrap(MvcEvent $e)
diff --git a/module/VuFindTheme/Module.php b/module/VuFindTheme/Module.php
index 9ca7617035b427e073f83bc75a4ea54751aaccb3..44b5936d5b7b2b98764ccdcdd7efba5016bf2002 100644
--- a/module/VuFindTheme/Module.php
+++ b/module/VuFindTheme/Module.php
@@ -61,6 +61,7 @@ class Module
      */
     public function getServiceConfig()
     {
+        // @codeCoverageIgnoreStart
         return array(
             'factories' => array(
                 'VuFindTheme\ThemeInfo' => function ($sm) {
@@ -74,6 +75,7 @@ class Module
                 'VuFindTheme\ResourceContainer' => 'VuFindTheme\ResourceContainer',
             ),
         );
+        // @codeCoverageIgnoreEnd
     }
 
     /**
@@ -83,6 +85,7 @@ class Module
      */
     public function getViewHelperConfig()
     {
+        // @codeCoverageIgnoreStart
         return array(
             'factories' => array(
                 'headlink' => function ($sm) {
@@ -117,6 +120,7 @@ class Module
                 },
             ),
         );
+        // @codeCoverageIgnoreEnd
     }
 
     /**