CS: Fix phpdoc tags indent in Icinga/Application/Modules/Module.php

refs #4530
This commit is contained in:
Eric Lippmann 2013-08-14 10:43:57 +02:00
parent be29b8ff8f
commit 8c91410680
1 changed files with 22 additions and 29 deletions

View File

@ -43,63 +43,54 @@ class Module
{
/**
* Module name
*
* @var string
*/
private $name;
/**
* Base directory of module
*
* @var string
*/
private $basedir;
/**
* Directory for styles
*
* @var string
*/
private $cssdir;
/**
* Library directory
*
* @var string
*/
private $libdir;
/**
* Directory containing translations
*
* @var string
*/
private $localedir;
/**
* Directory where controllers reside
*
* @var string
*/
private $controllerdir;
/**
* Directory containing form implementations
*
* @var string
*/
private $formdir;
/**
* Module bootstrapping script
*
* @var string
*/
private $registerscript;
/**
* Icinga application
*
* @var \Icinga\Application\Web
*/
private $app;
@ -109,7 +100,7 @@ class Module
*
* @param ApplicationBootstrap $app
* @param string $name
* @param strinb $basedir
* @param string $basedir
*/
public function __construct(ApplicationBootstrap $app, $name, $basedir)
{
@ -155,6 +146,7 @@ class Module
* @param string $name
* @param bool $autoload
* @return mixed
* @throws \Icinga\Exception\ProgrammingError When the module is not yet loaded
*/
public static function get($name, $autoload = false)
{
@ -164,7 +156,7 @@ class Module
$manager->loadModule($name);
}
}
// @throws ProgrammingError:
// Throws ProgrammingError when the module is not yet loaded
return $manager->getModule($name);
}
@ -200,6 +192,7 @@ class Module
/**
* Getter for base directory
*
* @return string
*/
public function getBaseDir()