Skip to content

Commit

Permalink
correct PHPdoc, fixes #264
Browse files Browse the repository at this point in the history
  • Loading branch information
elrido committed May 27, 2018
1 parent 4ccb4b1 commit 9a03185
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Configuration.php
Expand Up @@ -211,7 +211,7 @@ public function __construct()
/**
* get configuration as array
*
* return array
* @return array
*/
public function get()
{
Expand All @@ -221,7 +221,7 @@ public function get()
/**
* get default configuration as array
*
* return array
* @return array
*/
public static function getDefaults()
{
Expand All @@ -234,7 +234,7 @@ public static function getDefaults()
* @param string $key
* @param string $section defaults to main
* @throws Exception
* return mixed
* @return mixed
*/
public function getKey($key, $section = 'main')
{
Expand All @@ -250,7 +250,7 @@ public function getKey($key, $section = 'main')
*
* @param string $section
* @throws Exception
* return mixed
* @return mixed
*/
public function getSection($section)
{
Expand Down

0 comments on commit 9a03185

Please sign in to comment.