Skip to content

Commit

Permalink
Refactor and reorder tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bocharsky-bw committed Oct 11, 2015
1 parent 52dcaf0 commit f6720f2
Show file tree
Hide file tree
Showing 4 changed files with 1,411 additions and 1,333 deletions.
8 changes: 8 additions & 0 deletions src/AbstractArray.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ abstract public function shuffle();
/**
* {@inheritdoc}
*
* @return MutableArray
*
* @link http://php.net/manual/en/function.arsort.php
* @link http://php.net/manual/en/function.sort.php
* @link http://php.net/manual/en/function.asort.php
Expand All @@ -210,6 +212,8 @@ abstract public function sort($order = SORT_ASC, $strategy = SORT_REGULAR, $pres
/**
* {@inheritdoc}
*
* @return MutableArray
*
* @link http://php.net/manual/en/function.ksort.php
* @link http://php.net/manual/en/function.krsort.php
*/
Expand Down Expand Up @@ -246,13 +250,17 @@ abstract public function walk(callable $func, $recursively = false);
/**
* {@inheritdoc}
*
* @return MutableArray
*
* @link http://php.net/manual/en/function.usort.php
*/
abstract public function customSort(callable $func);

/**
* {@inheritdoc}
*
* @return MutableArray
*
* @link http://php.net/manual/en/function.uksort.php
*/
abstract public function customSortKeys(callable $func);
Expand Down
Loading

0 comments on commit f6720f2

Please sign in to comment.