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

Style fixes.

parent d13a119d
No related merge requests found
......@@ -127,8 +127,8 @@ class Manager
/**
* Add a file cache to the manager and ensure that necessary directory exists.
*
* @param string $cacheName Name of new cache to create
* @param string $dirName Directory to use for storage
* @param string $cacheName Name of new cache to create
* @param string $dirName Directory to use for storage
*
* @return void
*/
......@@ -151,7 +151,7 @@ class Manager
/**
* Add an APC cache to the manager.
*
* @param string $cacheName Name of new cache to create
* @param string $cacheName Name of new cache to create
*
* @return void
*/
......
......@@ -42,7 +42,8 @@ class InjectTemplateListener extends \Zend\Mvc\View\InjectTemplateListener
/**
* Inflect a name to a normalized value
*
* @param string $name
* @param string $name Name to inflect
*
* @return string
*/
protected function inflectName($name)
......@@ -55,7 +56,8 @@ class InjectTemplateListener extends \Zend\Mvc\View\InjectTemplateListener
/**
* Determine the top-level namespace of the controller
*
* @param string $controller
* @param string $controller Controller name
*
* @return string
*/
protected function deriveModuleNamespace($controller)
......
......@@ -85,6 +85,8 @@ class Initializer
* This needs to be called prior to the dispatch event, which is why it is a
* separate static method rather than part of the init() method below.
*
* @param MvcEvent $event Dispatch event object
*
* @return void
*/
public static function configureTemplateInjection(MvcEvent $event)
......@@ -180,9 +182,11 @@ class Initializer
$allThemeInfo = array();
do {
$iniReader = new IniReader();
$currentThemeInfo = new Config($iniReader->fromFile(
$this->baseDir . "/$currentTheme/theme.ini"
));
$currentThemeInfo = new Config(
$iniReader->fromFile(
$this->baseDir . "/$currentTheme/theme.ini"
)
);
$allThemeInfo[$currentTheme] = $currentThemeInfo;
......
......@@ -42,8 +42,6 @@ class OfflineMode extends AbstractHelper
/**
* Wrapper function to the VF_Search_Options getInstance function
*
* @param string $type The search type of the object to retrieve
*
* @return SearchOptions
*/
public function __invoke()
......
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