Skip to content

Commit

Permalink
improving docblock for Set::extract and Set::classicExtract return types
Browse files Browse the repository at this point in the history
  • Loading branch information
steinkel committed Mar 7, 2014
1 parent 8b1e5e3 commit 6049009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Utility/Set.php
Expand Up @@ -307,7 +307,7 @@ public static function format($data, $format, $keys) {
* @param string $path An absolute XPath 2.0 path
* @param array $data An array of data to extract from
* @param array $options Currently only supports 'flatten' which can be disabled for higher XPath-ness
* @return array An array of matched items
* @return array|mixed|null An array of matched items or the content of a single selected item or null in any of these cases: $path or $data are null, no items found.
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/set.html#Set::extract
*/
public static function extract($path, $data = null, $options = array()) {
Expand Down Expand Up @@ -532,7 +532,7 @@ public static function matches($conditions, $data = array(), $i = null, $length
*
* @param array $data Array from where to extract
* @param string|array $path As an array, or as a dot-separated string.
* @return array|null Extracted data or null when $data or $path are empty.
* @return array|mixed|null An array of matched items or the content of a single selected item or null in any of these cases: $path or $data are null, no items found.
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/set.html#Set::classicExtract
*/
public static function classicExtract($data, $path = null) {
Expand Down

0 comments on commit 6049009

Please sign in to comment.