Skip to content

Commit

Permalink
Add takewhile and dropwhile #2
Browse files Browse the repository at this point in the history
Remove unnecessary partial
  • Loading branch information
sergiors committed Jul 3, 2016
1 parent 6d0c74b commit 66a6dd4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dropwhile.php
Expand Up @@ -7,7 +7,7 @@
/**
* @author Sérgio Rafael Siqueira <sergio@inbep.com.br>
*
* @return mixed
* @return array
*/
function dropwhile(/* ...$args */)
{
Expand Down
2 changes: 2 additions & 0 deletions src/flatten.php
Expand Up @@ -7,6 +7,8 @@
/**
* @author Sérgio Rafael Siqueira <sergio@inbep.com.br>
*
* @param array $xs
*
* @return mixed
*/
function flatten(array $xs)
Expand Down
2 changes: 1 addition & 1 deletion src/takewhile.php
Expand Up @@ -6,7 +6,7 @@
* @author Marcelo Camargo <marcelocamargo@linuxmail.org>
* @author Sérgio Rafael Siqueira <sergio@inbep.com.br>
*
* @return mixed
* @return array
*/
function takewhile(/* ...$args */)
{
Expand Down

0 comments on commit 66a6dd4

Please sign in to comment.