Navigation Menu

Skip to content

Commit

Permalink
docblock fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ionas committed Dec 31, 2015
1 parent ce860d9 commit e8ddb73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Core/Configure.php
Expand Up @@ -112,7 +112,7 @@ public static function write($config, $value = null)
* ```
*
* @param string $var Variable to obtain. Use '.' to access array elements.
* @return mixed value stored in configure, or null.
* @return mixed Value stored in configure, or null.
* @link http://book.cakephp.org/3.0/en/development/configuration.html#reading-configuration-data
*/
public static function read($var = null)
Expand Down Expand Up @@ -142,7 +142,7 @@ public static function check($var)
* possible to store `null` values in Configure.
*
* Acts as a wrapper around Configure::read() and Configure::check().
* The configure value fetched via get is expected to exist.
* The configure value fetched via this method is expected to exist.
* In case it does not an exception will be thrown.
*
* Usage:
Expand All @@ -152,7 +152,7 @@ public static function check($var)
* ```
*
* @param string $var Variable to obtain. Use '.' to access array elements.
* @return mixed value stored in configure.
* @return mixed Value stored in configure.
* @throws \Cake\Core\Exception\Exception if the requested configuration is not set.
*/
public static function get($var) {
Expand Down

0 comments on commit e8ddb73

Please sign in to comment.