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
/**
* 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)
......
......@@ -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)
......
......@@ -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)
......
......@@ -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
}
/**
......
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