for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sergiors\Functional;
/**
* Just an alias.
*
* @author Sérgio Rafael Siqueira <[email protected]>
* @link http://php.net/array_map
*/
function map()
{
$args = func_get_args();
return call_user_func_array(curry('array_map'), $args);
}