From 6bd1c82981420d81783869db2dc219a04b2e3660 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Thu, 10 Jan 2013 14:00:25 -0500 Subject: [PATCH] Style fixes. --- module/VuFind/Module.php | 4 ++++ module/VuFindConsole/Module.php | 4 ++++ module/VuFindLocalTemplate/Module.php | 4 ++++ module/VuFindTheme/Module.php | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/module/VuFind/Module.php b/module/VuFind/Module.php index 92901f9af4f..78f16baa5c4 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 d700c026f13..29aed5666df 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 896565c56ef..f01c4c7982e 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 9ca7617035b..44b5936d5b7 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 } /** -- GitLab