The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

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