correct PHPdoc, fixes #264
This commit is contained in:
parent
4ccb4b1af4
commit
9a0318517b
1 changed files with 4 additions and 4 deletions
|
@ -211,7 +211,7 @@ class Configuration
|
||||||
/**
|
/**
|
||||||
* get configuration as array
|
* get configuration as array
|
||||||
*
|
*
|
||||||
* return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function get()
|
public function get()
|
||||||
{
|
{
|
||||||
|
@ -221,7 +221,7 @@ class Configuration
|
||||||
/**
|
/**
|
||||||
* get default configuration as array
|
* get default configuration as array
|
||||||
*
|
*
|
||||||
* return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function getDefaults()
|
public static function getDefaults()
|
||||||
{
|
{
|
||||||
|
@ -234,7 +234,7 @@ class Configuration
|
||||||
* @param string $key
|
* @param string $key
|
||||||
* @param string $section defaults to main
|
* @param string $section defaults to main
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
* return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function getKey($key, $section = 'main')
|
public function getKey($key, $section = 'main')
|
||||||
{
|
{
|
||||||
|
@ -250,7 +250,7 @@ class Configuration
|
||||||
*
|
*
|
||||||
* @param string $section
|
* @param string $section
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
* return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function getSection($section)
|
public function getSection($section)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue