CS: Fix phpdoc tags indent in Icinga/Application/Modules/Module.php
refs #4530
This commit is contained in:
parent
be29b8ff8f
commit
8c91410680
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue