Skip to content
Snippets Groups Projects
Commit 6bd1c829 authored by Demian Katz's avatar Demian Katz
Browse files

Style fixes.

parent b822149d
No related merge requests found
...@@ -75,6 +75,8 @@ class Module ...@@ -75,6 +75,8 @@ class Module
/** /**
* Initialize the module * Initialize the module
* *
* @param ModuleManager $m Module manager
*
* @return void * @return void
*/ */
public function init(ModuleManager $m) public function init(ModuleManager $m)
...@@ -84,6 +86,8 @@ class Module ...@@ -84,6 +86,8 @@ class Module
/** /**
* Bootstrap the module * Bootstrap the module
* *
* @param MvcEvent $e Event
*
* @return void * @return void
*/ */
public function onBootstrap(MvcEvent $e) public function onBootstrap(MvcEvent $e)
......
...@@ -69,6 +69,8 @@ class Module ...@@ -69,6 +69,8 @@ class Module
/** /**
* Initialize the module * Initialize the module
* *
* @param ModuleManager $m Module manager
*
* @return void * @return void
*/ */
public function init(ModuleManager $m) public function init(ModuleManager $m)
...@@ -78,6 +80,8 @@ class Module ...@@ -78,6 +80,8 @@ class Module
/** /**
* Bootstrap the module * Bootstrap the module
* *
* @param MvcEvent $e Event
*
* @return void * @return void
*/ */
public function onBootstrap(MvcEvent $e) public function onBootstrap(MvcEvent $e)
......
...@@ -69,6 +69,8 @@ class Module ...@@ -69,6 +69,8 @@ class Module
/** /**
* Initialize the module * Initialize the module
* *
* @param ModuleManager $m Module manager
*
* @return void * @return void
*/ */
public function init(ModuleManager $m) public function init(ModuleManager $m)
...@@ -78,6 +80,8 @@ class Module ...@@ -78,6 +80,8 @@ class Module
/** /**
* Bootstrap the module * Bootstrap the module
* *
* @param MvcEvent $e Event
*
* @return void * @return void
*/ */
public function onBootstrap(MvcEvent $e) public function onBootstrap(MvcEvent $e)
......
...@@ -61,6 +61,7 @@ class Module ...@@ -61,6 +61,7 @@ class Module
*/ */
public function getServiceConfig() public function getServiceConfig()
{ {
// @codeCoverageIgnoreStart
return array( return array(
'factories' => array( 'factories' => array(
'VuFindTheme\ThemeInfo' => function ($sm) { 'VuFindTheme\ThemeInfo' => function ($sm) {
...@@ -74,6 +75,7 @@ class Module ...@@ -74,6 +75,7 @@ class Module
'VuFindTheme\ResourceContainer' => 'VuFindTheme\ResourceContainer', 'VuFindTheme\ResourceContainer' => 'VuFindTheme\ResourceContainer',
), ),
); );
// @codeCoverageIgnoreEnd
} }
/** /**
...@@ -83,6 +85,7 @@ class Module ...@@ -83,6 +85,7 @@ class Module
*/ */
public function getViewHelperConfig() public function getViewHelperConfig()
{ {
// @codeCoverageIgnoreStart
return array( return array(
'factories' => array( 'factories' => array(
'headlink' => function ($sm) { 'headlink' => function ($sm) {
...@@ -117,6 +120,7 @@ class Module ...@@ -117,6 +120,7 @@ class Module
}, },
), ),
); );
// @codeCoverageIgnoreEnd
} }
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment