Skip to content

Commit

Permalink
update docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed Mar 16, 2015
1 parent 4692f25 commit 38e14e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Context/AbstractValues.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public function __construct(array $values = array())

/**
*
* Returns a value.
* Returns a value by key, an alternative value if that key does not exist,
* or all values if no key is passed.
*
* @param string $key The key, if any, to get the value of; if null, will
* return all values.
Expand All @@ -49,7 +50,7 @@ public function __construct(array $values = array())
* requested key does not exist.
*
* @return mixed The requested value, or the alternative default
* value.
* value; or, if no key was passed, all values.
*
*/
public function get($key = null, $alt = null)
Expand Down

0 comments on commit 38e14e3

Please sign in to comment.